From 7f722314e4fc21419552ec27eb91e6f7e6347b71 Mon Sep 17 00:00:00 2001 From: marudor Date: Wed, 3 Jan 2018 01:19:31 +0100 Subject: frontend stuff with babel and webpack --- public/js/forms.js | 94 ------------------------------------------------------ 1 file changed, 94 deletions(-) delete mode 100644 public/js/forms.js (limited to 'public/js/forms.js') diff --git a/public/js/forms.js b/public/js/forms.js deleted file mode 100644 index 5aa4f25a..00000000 --- a/public/js/forms.js +++ /dev/null @@ -1,94 +0,0 @@ -/** - * 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 - */ -function checkAll(id, checked) { - $("#" + id + " input[type='checkbox']").each(function () { - this.checked = checked; - }); -} - -/** - * Sets the checkboxes according to the given type - * - * @param {string} id The elements ID - * @param {list} shifts_list A list of numbers - */ -function checkOwnTypes(id, shifts_list) { - $("#" + id + " input[type='checkbox']").each(function () { - this.checked = $.inArray(parseInt(this.value), shifts_list) != -1; - }); -} - -/** - * @param {moment} date - */ -function formatDay(date) { - return date.format("YYYY-MM-DD"); -} - -/** - * @param {moment} date - */ -function formatTime(date) { - return date.format("HH:mm"); -} - -/** - * @param {moment} from - * @param {moment} to - */ -function setInput(from, to) { - var fromDay = $("#start_day"), fromTime = $("#start_time"), toDay = $("#end_day"), toTime = $("#end_time"); - - fromDay.val(formatDay(from)); - fromTime.val(formatTime(from)); - - toDay.val(formatDay(to)); - toTime.val(formatTime(to)); -} - -function setDay(days) { - days = days || 0; - - var from = moment(); - from.hours(0).minutes(0).seconds(0); - - from.add(days, "d"); - - var to = from.clone(); - to.hours(23).minutes(59); - - setInput(from, to); -} - -function setHours(hours) { - hours = hours || 1; - - var from = moment(); - var to = from.clone(); - - to.add(hours, "h"); - if (to < from) { - setInput(to, from); - return; - } - - setInput(from, to); -} - -$(function () { - /** - * Disable every submit button after clicking (to prevent double-clicking) - */ - $("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"); -}); -- cgit v1.2.3-70-g09d2