-
Notifications
You must be signed in to change notification settings - Fork 3.8k
mouseWheel:true prevent other mouse handlers to catch events #980
Comments
iscroll is preventing on wheel event. _wheel: function (e) {
if ( !this.enabled ) {
return;
}
e.preventDefault();
e.stopPropagation(); I will check it. |
I fix it on master branch. please wait for next release. |
Thanks @sculove, hopefully this will allow iScroll.js to finally be used in fullpage.js. |
Why did you close it? Will it be merged? |
@alvarotrigo yes. I merged |
Great! Thanks! |
This problem doesn't seem to be solved for IE. (any version) |
|
I would like to add iScroll.js as a dependency for fullPage.js but I won't be able to do it until this issue gets fixed. Meanwhile I'll be forced to provide a forked version of iScroll.js and therefore I won't be able to add the official iScroll.js as a dependency in neither bower or npm. |
It seems that when I use the option
mouseWheel :true
my other mouse wheel handlers won't receive any event.My event being fired
My event not being fired
The text was updated successfully, but these errors were encountered: