elRTE icon indicating copy to clipboard operation
elRTE copied to clipboard

$.browser is remove in Jquery 1.9

Open ClaudeMa opened this issue 11 years ago • 1 comments

http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed

ClaudeMa avatar Sep 10 '13 07:09 ClaudeMa

Just add the following code at the top of your elrte.js:

$.browser = {
    msie: /msie/i.test(navigator.userAgent) && !window.opera
    // safari, opera, mozilla - these are also used
};

or even better - use jquery/jquery-migrate

splinter89 avatar Jan 13 '14 10:01 splinter89