This project is archived and is in readonly mode.

"DOMEvent" and "mousewheel" event
Reported by Ess | September 16th, 2011 @ 04:34 PM
Tested on Firefox 6.0.2
"wheel" property of DOMEvent object is not instantiated when "mousewheel" event is thrown.
There is a missing condition in DOMEvent object :
} else if (type == 'click' || type == 'dblclick' || type == 'contextmenu' || type.indexOf('mouse') == 0){
should be replaced by
} else if (type == 'click' || type == 'dblclick' || type == 'contextmenu' || type.indexOf('mouse') == 0 || type == 'DOMMouseScroll'){
Comments and changes to this ticket
-
-
ibolmo January 19th, 2012 @ 10:23 AM
- State changed from new to invalid
Moved to Github Issues: https://github.com/mootools/mootools-core/issues/2242
Please use Github Issues, since Lighthouse has been deprecated.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »