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/shift-calendar.js

30 lines
860 B
JavaScript

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