engelsystem/public/js/sticky-headers.js

32 lines
1008 B
JavaScript
Raw Normal View History

/**
* 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) {
var timeLanes = $(".shift-calendar .time");
var headers = $(".shift-calendar .header");
var topReference = $(".container-fluid .row");
timeLanes.css({
2017-01-02 15:43:36 +01:00
"position": "relative",
"z-index": 999
});
headers.css({
2017-01-02 15:43:36 +01:00
"position": "relative",
"z-index": 900
});
$(window).scroll(
2017-01-02 15:43:36 +01:00
function () {
2017-11-24 12:01:19 +01:00
var top = headers.parent().offset().top;
var left = 15;
2017-01-02 15:43:36 +01:00
timeLanes.css({
"left": Math.max(0, $(window).scrollLeft() - left) + "px"
});
headers.css({
"top": Math.max(0, $(window).scrollTop() - top
+ topReference.offset().top)
+ "px"
2017-01-02 15:43:36 +01:00
});
});
2017-01-02 15:43:36 +01:00
}
});