Created
January 7, 2017 04:43
-
-
Save loethen/42eaaf03ab387f27aced7f02f0a1e7c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touchToBottom: function(fn){ | |
if($(window).height() + $(window).scrollTop() >= $(document).height() - 80){ | |
fn && fn(); | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment