diff options
Diffstat (limited to '')
-rwxr-xr-x | public/vendor/showup/showup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/vendor/showup/showup.js b/public/vendor/showup/showup.js index f4f2267e..da987858 100755 --- a/public/vendor/showup/showup.js +++ b/public/vendor/showup/showup.js @@ -36,7 +36,7 @@ target.clearQueue(); target.stop(); var currentScroll = $(this).scrollTop(); - if (currentScroll > hideOffset) { + if (currentScroll > hideOffset && !target.hasClass('locked')) { if(Math.abs(previousScroll - currentScroll) < 50) return; if (currentScroll > previousScroll) { // Action on scroll down |