UFD 0.6 does not scroll correctly when the mouse wheel is used in IE (11) with
jQuery 1.10 (and probabla jQuery from 1.7 on). Reason is that wheelDelta as a
non standard property is no longer available at the jQuery Event object. I
fixed it in my copy:
this.listScroll.bind("DOMMouseScroll mousewheel", function (e)
...
var normal = e.detail ? e.detail * -1 : (e.originalEvent
? e.originalEvent.wheelDelta / 40 : e.wheelDelta / 40)
Original issue reported on code.google.com by jb.the.s...@gmail.com on 9 Apr 2014 at 9:27
Original issue reported on code.google.com by
jb.the.s...@gmail.com
on 9 Apr 2014 at 9:27