Duder-onomy / svgpan

Automatically exported from code.google.com/p/svgpan
0 stars 0 forks source link

No wheelmouse under MsIE 11 #33

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Start demo page under MsIE11 http://www.cyberz.org/projects/SVGPan/tiger.svg
2. Try to zoom with the mousewheel

What is the expected output? What do you see instead?
The SVG should be zoomed but nothing happens

What version of the product are you using? On what operating system?
MSIE11 64b, Ms Windows7 64b

The MSIE11 user agent string has changed. It is no longer presented as IE but 
as Mozilla like web browser.

A quick fix is to add MSIE11 detection during wheelmouse event listener init.

In SVGPan.js

var isIE11 = !!navigator.userAgent.match(/Trident\/7\./);
    if ((navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) || isIE11)
        window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari/MsIE11

Original issue reported on code.google.com by nopnopz...@gmail.com on 9 Sep 2014 at 1:13