Skip to content

Instantly share code, notes, and snippets.

@felquis
Last active October 13, 2015 17:58
Show Gist options
  • Save felquis/4234844 to your computer and use it in GitHub Desktop.
Save felquis/4234844 to your computer and use it in GitHub Desktop.
Cancela o Scroll no Window, quando estiver em um elemento que esta usando o plugin jScrollPane...
$('content-scroll').hover(function () {
$(window).on('mousewheel.cancelWindowScroll', function (e) {
e.preventDefault();
});
}, function () {
$(window).off('mousewheel.cancelWindowScroll');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment