2016-12-06 10:09:37 +01:00
|
|
|
/**
|
|
|
|
* Enables the fixed headers and time lane for the shift-calendar and datatables
|
|
|
|
*/
|
2017-01-02 15:43:36 +01:00
|
|
|
$(document).ready(function () {
|
|
|
|
if ($(".shift-calendar").length) {
|
2016-12-06 10:09:37 +01:00
|
|
|
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({
|
2017-01-02 15:43:36 +01:00
|
|
|
"position": "relative",
|
|
|
|
"z-index": 999
|
2016-12-06 10:09:37 +01:00
|
|
|
});
|
|
|
|
headers.css({
|
2017-01-02 15:43:36 +01:00
|
|
|
"position": "relative",
|
|
|
|
"z-index": 900
|
2016-12-06 10:09:37 +01:00
|
|
|
});
|
|
|
|
$(window).scroll(
|
2017-01-02 15:43:36 +01:00
|
|
|
function () {
|
|
|
|
timeLanes.css({
|
|
|
|
"left": Math.max(0, $(window).scrollLeft() - left) + "px"
|
|
|
|
});
|
|
|
|
headers.css({
|
|
|
|
"top": Math.max(0, $(window).scrollTop() - top
|
|
|
|
+ topReference.offset().top)
|
2016-12-06 10:09:37 +01:00
|
|
|
+ "px"
|
2017-01-02 15:43:36 +01:00
|
|
|
});
|
2016-12-06 10:09:37 +01:00
|
|
|
});
|
2017-01-02 15:43:36 +01:00
|
|
|
}
|
|
|
|
});
|