You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've enabled progressive animation (by setting body visibility to hidden). Sometimes, it seems the body remains hidden. This happens sometimes Chrome but much more in Firefox.
I found this line in the bootstrap.js: pass = ($(document.body).css('visibility') == 'visible') ? 1 : 0
when I debug this line, pass is sometimes 1 and sometimes 0, when refreshing on the same page (cache enabled/disabled doesn't seem to matter).
Interestingly, even when it's 1, calling $(document.body).css('visibility') in the console, immediately after that line returns hidden.
Other than that, keep up the amazing work. It took me 2 minutes to integrate this in our website and it worked on the first try.
The text was updated successfully, but these errors were encountered:
I've enabled progressive animation (by setting body visibility to hidden). Sometimes, it seems the body remains hidden. This happens sometimes Chrome but much more in Firefox.
I found this line in the bootstrap.js:
pass = ($(document.body).css('visibility') == 'visible') ? 1 : 0
when I debug this line,
pass
is sometimes 1 and sometimes 0, when refreshing on the same page (cache enabled/disabled doesn't seem to matter).Interestingly, even when it's 1, calling
$(document.body).css('visibility')
in the console, immediately after that line returnshidden
.Other than that, keep up the amazing work. It took me 2 minutes to integrate this in our website and it worked on the first try.
The text was updated successfully, but these errors were encountered: