diff options
Diffstat (limited to 'frontend/js/forms.js')
-rw-r--r-- | frontend/js/forms.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/frontend/js/forms.js b/frontend/js/forms.js index 67b14b32..db1a3f83 100644 --- a/frontend/js/forms.js +++ b/frontend/js/forms.js @@ -2,10 +2,10 @@ * Sets all checkboxes to the wanted state * * @param {string} id Id of the element containing all the checkboxes - * @param {bool} checked True if the checkboxes should be checked + * @param {boolean} checked True if the checkboxes should be checked */ global.checkAll = (id, checked) => { - $("#" + id + " input[type='checkbox']").each(function () { + $('#' + id + ' input[type="checkbox"]').each(function () { this.checked = checked; }); } @@ -17,7 +17,7 @@ global.checkAll = (id, checked) => { * @param {list} shifts_list A list of numbers */ global.checkOwnTypes = (id, shifts_list) => { - $("#" + id + " input[type='checkbox']").each(function () { + $('#' + id + ' input[type="checkbox"]').each(function () { this.checked = $.inArray(parseInt(this.value), shifts_list) != -1; }); } @@ -26,14 +26,14 @@ global.checkOwnTypes = (id, shifts_list) => { * @param {moment} date */ global.formatDay = (date) => { - return date.format("YYYY-MM-DD"); + return date.format('YYYY-MM-DD'); } /** * @param {moment} date */ global.formatTime = (date) => { - return date.format("HH:mm"); + return date.format('HH:mm'); } /** @@ -41,7 +41,7 @@ global.formatTime = (date) => { * @param {moment} to */ global.setInput = (from, to) => { - var fromDay = $("#start_day"), fromTime = $("#start_time"), toDay = $("#end_day"), toTime = $("#end_time"); + var fromDay = $('#start_day'), fromTime = $('#start_time'), toDay = $('#end_day'), toTime = $('#end_time'); fromDay.val(formatDay(from)); fromTime.val(formatTime(from)); @@ -56,7 +56,7 @@ global.setDay = (days) => { var from = moment(); from.hours(0).minutes(0).seconds(0); - from.add(days, "d"); + from.add(days, 'd'); var to = from.clone(); to.hours(23).minutes(59); @@ -70,7 +70,7 @@ global.setHours = (hours) => { var from = moment(); var to = from.clone(); - to.add(hours, "h"); + to.add(hours, 'h'); if (to < from) { setInput(to, from); return; @@ -83,12 +83,12 @@ $(function () { /** * Disable every submit button after clicking (to prevent double-clicking) */ - $("form").submit(function (ev) { - $("input[type='submit']").prop("readonly", true).addClass("disabled"); + $('form').submit(function (ev) { + $('input[type="submit"]').prop('readonly', true).addClass('disabled'); return true; }); - $(".dropdown-menu").css("max-height", function () { - return ($(window).height() - 50) + "px"; - }).css("overflow-y", "scroll"); + $('.dropdown-menu').css('max-height', function () { + return ($(window).height() - 50) + 'px'; + }).css('overflow-y', 'scroll'); }); |