We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature gone from jquery 1.9
The text was updated successfully, but these errors were encountered:
I've gotten around that by adding this to the maphighlight.js file (I use the min version)...
function getIEVer(){var rv=-1;if(navigator.appName=='Microsoft Internet Explorer'){var ua=navigator.userAgent;var re=new RegExp("MSIE ([0-9]{1,}[.0-9]{0,})");if(re.exec(ua)!=null)rv=parseFloat(RegExp.$1);}return rv;}iever = getIEVer();
and then there are 2 places to modify...
(m.hasCanvas=e),$.browser.msie&&!m.hasCanvas
to
(m.hasCanvas=e),iever>-1&&!m.hasCanvas
and
r=e.browser.msie&&e.browser.version<=7
r=iever>-1&&iever<=7
Sorry, something went wrong.
Thanks for the workaround. This looks perfectly fine, I am horribly delinquent in addressing this.
Fixed in 1.2.9 just pushed.
No branches or pull requests
Feature gone from jquery 1.9
The text was updated successfully, but these errors were encountered: