Fix back to top icon not appearing on webkit browsers
This commit is contained in:
parent
f073a96b19
commit
3e95dee58c
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ app.views.BackToTop = Backbone.View.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
toggleVisibility: function() {
|
toggleVisibility: function() {
|
||||||
if($("html, body").scrollTop() > 1000) {
|
if($(document).scrollTop() > 1000) {
|
||||||
$("#back-to-top").addClass("visible");
|
$("#back-to-top").addClass("visible");
|
||||||
} else {
|
} else {
|
||||||
$("#back-to-top").removeClass("visible");
|
$("#back-to-top").removeClass("visible");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue