You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Firefox 37 and plugin doesn't works in this browser because of listening event "keypress" besides of "key". Now Firefox support "key" and doesn't support "keypress".
if(CKEDITOR.env.webkit){editor.on("key",function(e){// This event now works in Firefox tooif(e.data.keyCode===32||e.data.keyCode===13)editor.autolink(e);});}else{editor.document.on("keypress",function(e){// It's not supported by current version of Fifrefoxif(e.data.getKey()===32||e.data.getKey()===13)editor.autolink(e);});}
The text was updated successfully, but these errors were encountered:
I'm using Firefox 37 and plugin doesn't works in this browser because of listening event "keypress" besides of "key". Now Firefox support "key" and doesn't support "keypress".
The text was updated successfully, but these errors were encountered: