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/sticky-headers.js | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 public/js/sticky-headers.js (limited to 'public/js/sticky-headers.js') diff --git a/public/js/sticky-headers.js b/public/js/sticky-headers.js deleted file mode 100644 index 6e6a75e2..00000000 --- a/public/js/sticky-headers.js +++ /dev/null @@ -1,31 +0,0 @@ -/** - * Enables the fixed headers and time lane for the shift-calendar and datatables - */ -$(document).ready(function () { - if ($(".shift-calendar").length) { - var timeLanes = $(".shift-calendar .time"); - var headers = $(".shift-calendar .header"); - var topReference = $(".container-fluid .row"); - timeLanes.css({ - "position": "relative", - "z-index": 999 - }); - headers.css({ - "position": "relative", - "z-index": 900 - }); - $(window).scroll( - function () { - var top = headers.parent().offset().top; - var left = 15; - timeLanes.css({ - "left": Math.max(0, $(window).scrollLeft() - left) + "px" - }); - headers.css({ - "top": Math.max(0, $(window).scrollTop() - top - + topReference.offset().top) - + "px" - }); - }); - } -}); -- cgit v1.2.3-54-g00ecf