summaryrefslogtreecommitdiff
path: root/public/js/shift-calendar.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/shift-calendar.js')
-rw-r--r--public/js/shift-calendar.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/public/js/shift-calendar.js b/public/js/shift-calendar.js
deleted file mode 100644
index 5331ffe5..00000000
--- a/public/js/shift-calendar.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/**
- * Enables the fixed headers and time lane for the shift-calendar.
- */
-$(document).ready(
- function() {
- var timeLanes = $(".shift-calendar .time");
- var headers = $(".shift-calendar .header");
- var topReference = $(".container-fluid .row");
- var top = headers.offset().top;
- var left = 15;
- timeLanes.css({
- "position" : "relative",
- "z-index" : 999
- });
- headers.css({
- "position" : "relative",
- "z-index" : 900
- });
- $(window).scroll(
- function() {
- timeLanes.css({
- "left" : Math.max(0, $(window).scrollLeft() - left) + "px"
- });
- headers.css({
- "top" : Math.max(0, $(window).scrollTop() - top
- + topReference.offset().top)
- + "px"
- });
- });
- }); \ No newline at end of file