this.fluidbook.settings.soundTheme = '';
},
- checkScroll: function () {
+ checkScroll: function (revealDelay) {
if (this.transitioning) {
return;
}
this.checkFooterNavReveal();
- this.checkLinksReveal();
+ this.checkLinksReveal(revealDelay);
},
checkFooterNavReveal: function () {
}
},
- checkLinksReveal: function () {
+ checkLinksReveal: function (delay) {
if (this.transitioning) {
return;
}
var $this = this;
- var delay = 800;
+ if (delay === undefined) {
+ delay = 800;
+ }
$("#links .link:not(.revealed):visible, .clinks [data-animations]:not(.revealed)").each(function () {
var rect = $(this).get(0).getBoundingClientRect();
if (rect.top === 0 && rect.left === 0 && rect.width === 0 && rect.height === 0) {
this.transitioning = false;
var $this = this;
setTimeout(function () {
- $this.checkScroll();
+ $this.checkScroll(0);
}, 200);
setTimeout(function () {