summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-12-06 10:09:37 +0100
committermsquare <msquare@notrademark.de>2016-12-13 17:59:42 +0100
commit5fea199b548960a6f8f8b4f06619187cc4c74f20 (patch)
tree150e5e58290ee2c9c18a2563166ad703540da8c3 /public
parent2f0a63a4a1e01489caba8e2e7fc1832c56caab0d (diff)
no scroll handler, wenn no shift calendar
Diffstat (limited to 'public')
-rw-r--r--public/js/shift-calendar.js30
-rw-r--r--public/js/sticky-headers.js32
2 files changed, 32 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
diff --git a/public/js/sticky-headers.js b/public/js/sticky-headers.js
new file mode 100644
index 00000000..1d6e9402
--- /dev/null
+++ b/public/js/sticky-headers.js
@@ -0,0 +1,32 @@
+/**
+ * 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");
+ 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