jQuery 1.9 favours feature-detection over browser-detection. To work around
that, add the following lines after $.fn.editInPlace is defined:
jQuery.browser = {};
jQuery.browser.mozilla = /mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit/.test(navigator.userAgent.toLowerCase());
jQuery.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase());
jQuery.browser.opera = /opera/.test(navigator.userAgent.toLowerCase());
jQuery.browser.msie = /msie/.test(navigator.userAgent.toLowerCase());
Original issue reported on code.google.com by dave.jar...@gmail.com on 8 Jun 2013 at 2:23
Original issue reported on code.google.com by
dave.jar...@gmail.com
on 8 Jun 2013 at 2:23