summaryrefslogtreecommitdiff
path: root/frontend/js/sticky-headers.js
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-09-10 17:22:05 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-09-10 18:22:48 +0200
commitc1a1180d1f43a430b38450cb0b64bcd74487b4ae (patch)
treed2e532f8f7f3233517dd1ad8de5cb1b7e1ccc5ad /frontend/js/sticky-headers.js
parent4bf3a68f43e4fcea34fe0a16cb3e1eecb97d332a (diff)
Moved frontend, templates and lang to resources
Diffstat (limited to 'frontend/js/sticky-headers.js')
-rw-r--r--frontend/js/sticky-headers.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/frontend/js/sticky-headers.js b/frontend/js/sticky-headers.js
deleted file mode 100644
index c664387c..00000000
--- a/frontend/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'
- });
- });
- }
-});