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
From the jQuery Core 1.9 Upgrade Guide: "The jQuery.browser() method has been deprecated since jQuery 1.3 and is removed in 1.9."
This causes SketchPad to break if jQuery 1.9 is used without the jQuery Migrate plugin.
The text was updated successfully, but these errors were encountered:
A quick workaround is to replace jQuery.browser.msie with !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() ) (taken from jquery.simulate.js).
jQuery.browser.msie
!!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() )
Sorry, something went wrong.
For this one I have implemented another fix.
Find:
if (jQuery.browser.msie) {
Replace by:
var myNav = navigator.userAgent.toLowerCase(); if (myNav.indexOf('msie') != -1) {
No branches or pull requests
From the jQuery Core 1.9 Upgrade Guide: "The jQuery.browser() method has been deprecated since jQuery 1.3 and is removed in 1.9."
This causes SketchPad to break if jQuery 1.9 is used without the jQuery Migrate plugin.
The text was updated successfully, but these errors were encountered: