Open GoogleCodeExporter opened 9 years ago
If you use this this code:
if (window.addEventListener)
/** DOMMouseScroll is for mozilla. */
window.addEventListener('DOMMouseScroll', wheel, false);
/** IE/Opera. */
window.onmousewheel = document.onmousewheel = wheel;
to setup mousewheel events instead of the one in SVGPAN.js then it works also
in Opera and IE9.
Original comment by nikba...@gmail.com
on 2 Dec 2011 at 6:42
The following seemed to work for me (version 1.2.2):
//if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
//else
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
Original comment by lukas.to...@htwchur.ch
on 8 Feb 2012 at 11:10
I modified it as follows to get it to work in Opera, Chrome, Safari, Firefox,
and IE9:
if (navigator.userAgent.match(/like Mac OS X/i)) {
window.addEventListener('gesturechange',handleMouseWheel,false); // iOS gestures (UNTESTED)
} else if (navigator.userAgent.toLowerCase().indexOf('firefox') >= 0) {
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Firefox
} else {
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari/Opera/Explorer9
}
I haven't yet tested the iOS gesture code.
Original comment by r...@cornell.edu
on 13 Jul 2012 at 3:05
@ #3
Had to change it from window.addEventListener… to root.addEventListener… to
make it work. Thanks!
Original comment by gilmar.a...@gmail.com
on 21 Oct 2013 at 12:12
I tried all the above but could not get it to work properly in IE11...
Original comment by wole...@gmail.com
on 12 Jan 2015 at 2:27
I traced the source of the problem to getEventPoint...
I amended the code as below and it worked!
/**
* Instance an SVGPoint object with given event coordinates.
*/
function getEventPoint(evt) {
if(evt==null){return;}
var p;
try
{
p = root.createSVGPoint();
}
catch(e)
{
}
if(p==null)
{
var svgDoc = evt.target.ownerDocument;
var g = getRoot(svgDoc);
p = g.nearestViewportElement.createSVGPoint();
}
p.x = evt.clientX;
p.y = evt.clientY;
return p;
}
Original comment by wole...@gmail.com
on 12 Jan 2015 at 3:16
None of these fixes work for IE9 or IE11, help!
Original comment by hamish....@gmail.com
on 14 Jun 2015 at 11:49
Original issue reported on code.google.com by
zdenek.k...@gmail.com
on 22 Jun 2011 at 4:34