maschek / imgmap

Javascript based imagemap editor
https://www.maschek.hu/imagemap/
GNU General Public License v2.0
59 stars 33 forks source link

Fix "isMSIE" not working in IE11 #81

Closed oh4851 closed 8 years ago

oh4851 commented 8 years ago

[navigator.appName] doesn't work in IE11 It causes incorrect point in mousemove event.

this.isMSIE    = (navigator.appName == "Microsoft Internet Explorer") || (navigator.appName == 'Netscape' && navigator.userAgent.search('Trident') != -1);

"Trident" (also known as MSHTML) is a proprietary layout engine for the Microsoft Windows version of Internet Explorer, developed by Microsoft. (It was first introduced with the release of Internet Explorer version 4.0) - Wikipedia

maschek commented 8 years ago

Good one, thank you!