thomascube
2011-01-26 cdb8b96e31fdb71b37fe6b0fca81ef5221de7a6d
program/js/tiny_mce/themes/advanced/js/source_editor.js
@@ -2,7 +2,7 @@
tinyMCEPopup.onInit.add(onLoadInit);
function saveContent() {
   tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value);
   tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {source_view : true});
   tinyMCEPopup.close();
}
@@ -13,7 +13,7 @@
   if (tinymce.isGecko)
      document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck");
   document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent();
   document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true});
   if (tinyMCEPopup.editor.getParam("theme_advanced_source_editor_wrap", true)) {
      setWrap('soft');