eduardomb / scroll-up-bar

The scroll up bar plugin (jQuery) hides the top bar when scrolling down, and show it when scrolling up. It's specially useful on mobile interfaces to save some precious space.
MIT License
613 stars 63 forks source link

make enterViewport cancellable #20

Open rstacruz opened 9 years ago

rstacruz commented 9 years ago

it'd be nice to make it cancellable:

$('#header').scrollupbar({
  enterViewport: function () {
    // prevent entering if the page is still too high.
    if ($(window).scrollTop() < 1000) return false
  }
})