engelsystem/resources/assets/js/sticky-headers.js

33 lines
1.0 KiB
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({
'position': 'relative',
'z-index': 999
});
headers.css({
'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'
2017-01-02 15:43:36 +01:00
});
headers.css({
'top': Math.max(0, $(window).scrollTop() - top
2021-09-11 10:46:21 +02:00
- 13
2017-01-02 15:43:36 +01:00
+ topReference.offset().top)
+ 'px'
2017-01-02 15:43:36 +01:00
});
});
2017-01-02 15:43:36 +01:00
}
});