]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/themes/advanced/js/source_editor.js
Wordpress 2.8
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / themes / advanced / js / source_editor.js
index a6235a38155612fcb9b2d4a3bd3fa547f265cdc6..81063ecbcdef6e1b22e325ae44fb5158107207a9 100644 (file)
@@ -2,7 +2,7 @@ tinyMCEPopup.requireLangPack();
 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 @@ function onLoadInit() {
        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');