},
initAnimatedContentsLinks: function () {
- if (this.fluidbook.mobilefirst.enabled) {
+ if (this.fluidbook.mobilefirst.enabled || (this.fluidbook.splash.isVisible() && !this.fluidbook.splash.isHidding)) {
return;
}
var $this = this;
function FluidbookSplash(fluidbook) {
this.fluidbook = fluidbook;
this.hideSplashTimeout = 1;
+ this.isHidding = false;
this.init();
}
},
_hide: function () {
+ this.isHidding=true;
var $this = this;
var timeout = this.fluidbook.nointerface ? 0 : 700;
this.fluidbook.resize.resize(false, true);
this.fluidbook.allowChangePage();
$(this.fluidbook).trigger('fluidbook.splash.hide');
+ this.isHidding=false;
},
}
\ No newline at end of file