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