Aleksander Machniak
2012-11-13 003b17e2384a3537ae2c724f41c7c4252a9dafd0
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) {