You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/public/js/sticky-headers.js

32 lines
1008 B
JavaScript

/**
* Enables the fixed headers and time lane for the shift-calendar and datatables
*/
8 years ago
$(document).ready(function () {
if ($(".shift-calendar").length) {
var timeLanes = $(".shift-calendar .time");
var headers = $(".shift-calendar .header");
var topReference = $(".container-fluid .row");
timeLanes.css({
8 years ago
"position": "relative",
"z-index": 999
});
headers.css({
8 years ago
"position": "relative",
"z-index": 900
});
$(window).scroll(
8 years ago
function () {
var top = headers.parent().offset().top;
var left = 15;
8 years ago
timeLanes.css({
"left": Math.max(0, $(window).scrollLeft() - left) + "px"
});
headers.css({
"top": Math.max(0, $(window).scrollTop() - top
+ topReference.offset().top)
+ "px"
8 years ago
});
});
8 years ago
}
});