summaryrefslogtreecommitdiff
path: root/program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-07-30 12:08:58 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-07-30 12:08:58 +0200
commit6843acc9fced3dc1261e019ad4552b6e4c340ec7 (patch)
tree67d4f85b6b99d49f1ad28aa98fca213b6962fd7d /program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
parent9f1652e29e2ed8be815cae4abf42bde989ffeb22 (diff)
parent6d1253681547343dcffb398a7e485bfb70087b57 (diff)
Merged changes to skin folders
Diffstat (limited to 'program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js')
-rw-r--r--program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js b/program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
index c0efe749c..a18bcd786 100644
--- a/program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
+++ b/program/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
@@ -14,10 +14,7 @@
var VK = tinymce.VK;
function handleContentEditableSelection(ed) {
- var dom = ed.dom, selection = ed.selection, invisibleChar, caretContainerId = 'mce_noneditablecaret';
-
- // Setup invisible character use zero width space on Gecko since it doesn't change the height of the container
- invisibleChar = tinymce.isGecko ? '\u200B' : '\uFEFF';
+ var dom = ed.dom, selection = ed.selection, invisibleChar, caretContainerId = 'mce_noneditablecaret', invisibleChar = '\uFEFF';
// Returns the content editable state of a node "true/false" or null
function getContentEditable(node) {