/home/sharedstore/.trash/modules/cz_themeoptions/views/js
Edit: /home/sharedstore/.trash/modules/cz_themeoptions/views/js/frontdesign.js (759B)
if (CZBOX_LAYOUT == 1) {
$('body').addClass('box_layout')
}
if (CZSTICKY_HEADER == 1) {
function stickyheader(){
if ($(document).width() <= 991) {
// ---------------- Fixed header responsive ----------------------
$(window).bind('scroll', function () {
if ($(window).scrollTop() > 220) {
$('.header-top').addClass('fixed');
} else {
$('.header-top').removeClass('fixed');
}
});
}
else if($(document).width() >= 992)
{
$(window).bind('scroll', function () {
if ($(window).scrollTop() > 320) {
$('.header-top').addClass('fixed');
} else {
$('.header-top').removeClass('fixed');
}
});
}
}
$(document).ready(function(){stickyheader();});
$(window).resize(function(){stickyheader();});
}