},
checkSliderVisibility: function () {
- if (this.reduceVerticalMargins() && this.fluidbook.settings.mobileHideSliderIfOverlaps && ($("#slider").get(0).getBoundingClientRect().top - $("#fluidbook").get(0).getBoundingClientRect().bottom < 5)) {
+ if (this.reduceVerticalMargins() && this.fluidbook.settings.mobileHideSliderIfOverlaps && ($("#slider").length > 0 && ($("#slider").get(0).getBoundingClientRect().top - $("#fluidbook").get(0).getBoundingClientRect().bottom < 5))) {
$('body').addClass('slider-hidden');
} else {
$('body').removeClass('slider-hidden');