1 | Index: src/wp-includes/js/tinymce/plugins/paste/editor_plugin_src.js |
---|
2 | =================================================================== |
---|
3 | --- src/wp-includes/js/tinymce/plugins/paste/editor_plugin_src.js (revision 26850) |
---|
4 | +++ src/wp-includes/js/tinymce/plugins/paste/editor_plugin_src.js (working copy) |
---|
5 | @@ -291,10 +291,10 @@ |
---|
6 | } |
---|
7 | } |
---|
8 | |
---|
9 | // Check if we should use the new auto process method |
---|
10 | if (getParam(ed, "paste_auto_cleanup_on_paste")) { |
---|
11 | // Is it's Opera or older FF use key handler |
---|
12 | - if (tinymce.isOpera || /Firefox\/2/.test(navigator.userAgent)) { |
---|
13 | + if (tinymce.isOpera || /Firefox\/2\./.test(navigator.userAgent)) { |
---|
14 | ed.onKeyDown.addToTop(function(ed, e) { |
---|
15 | if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) |
---|
16 | grabContent(e); |
---|