2016-11-15 21:33:54 +01:00
|
|
|
/**
|
|
|
|
* Enables the fixed headers and time lane for the shift-calendar.
|
|
|
|
*/
|
|
|
|
$(document).ready(
|
|
|
|
function() {
|
2016-11-15 21:42:43 +01:00
|
|
|
var timeLanes = $(".shift-calendar .time");
|
2016-11-15 21:33:54 +01:00
|
|
|
var headers = $(".shift-calendar .header");
|
2016-11-15 21:42:43 +01:00
|
|
|
var topReference = $(".container-fluid .row");
|
2016-11-15 21:33:54 +01:00
|
|
|
var top = headers.offset().top;
|
|
|
|
var left = 15;
|
2016-11-15 21:42:43 +01:00
|
|
|
timeLanes.css({
|
2016-11-15 21:33:54 +01:00
|
|
|
"position" : "relative",
|
2016-11-16 13:03:22 +01:00
|
|
|
"z-index" : 999
|
2016-11-15 21:33:54 +01:00
|
|
|
});
|
|
|
|
headers.css({
|
|
|
|
"position" : "relative",
|
|
|
|
"z-index" : 900
|
|
|
|
});
|
|
|
|
$(window).scroll(
|
|
|
|
function() {
|
2016-11-15 21:42:43 +01:00
|
|
|
timeLanes.css({
|
2016-11-15 21:33:54 +01:00
|
|
|
"left" : Math.max(0, $(window).scrollLeft() - left) + "px"
|
|
|
|
});
|
|
|
|
headers.css({
|
|
|
|
"top" : Math.max(0, $(window).scrollTop() - top
|
2016-11-15 21:42:43 +01:00
|
|
|
+ topReference.offset().top)
|
2016-11-15 21:33:54 +01:00
|
|
|
+ "px"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|