From 28349b69a8e591ddd2472bd53a3029de96444696 Mon Sep 17 00:00:00 2001 From: Bot Date: Sat, 11 Aug 2018 22:16:57 +0200 Subject: Changed JS to use single quotes instead of double quotes --- frontend/js/sticky-headers.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'frontend/js/sticky-headers.js') diff --git a/frontend/js/sticky-headers.js b/frontend/js/sticky-headers.js index 6e6a75e2..c664387c 100644 --- a/frontend/js/sticky-headers.js +++ b/frontend/js/sticky-headers.js @@ -2,29 +2,29 @@ * 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"); + 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 + 'position': 'relative', + 'z-index': 999 }); headers.css({ - "position": "relative", - "z-index": 900 + '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" + 'left': Math.max(0, $(window).scrollLeft() - left) + 'px' }); headers.css({ - "top": Math.max(0, $(window).scrollTop() - top + 'top': Math.max(0, $(window).scrollTop() - top + topReference.offset().top) - + "px" + + 'px' }); }); } -- cgit v1.2.3-70-g09d2