diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-01 10:17:27 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-01 10:17:27 +0100 |
commit | 042aa2e169310bc23398d0558455a61fe1e86a92 (patch) | |
tree | 50ae4d8845bc16e2edfbaa916e80d8709ee3fe86 /view/en/jot-header.tpl | |
parent | 1151124feed13ebe1bf87bdcebf9692a5ce6233e (diff) | |
parent | 89313235d26569df5cbdabb1f85871f10056e41f (diff) | |
download | volse-hubzilla-042aa2e169310bc23398d0558455a61fe1e86a92.tar.gz volse-hubzilla-042aa2e169310bc23398d0558455a61fe1e86a92.tar.bz2 volse-hubzilla-042aa2e169310bc23398d0558455a61fe1e86a92.zip |
Merge remote branch 'friendika-master/master'
Diffstat (limited to 'view/en/jot-header.tpl')
-rw-r--r-- | view/en/jot-header.tpl | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/view/en/jot-header.tpl b/view/en/jot-header.tpl index b687f65a6..d0c956a02 100644 --- a/view/en/jot-header.tpl +++ b/view/en/jot-header.tpl @@ -2,17 +2,20 @@ <script language="javascript" type="text/javascript" src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script> <script language="javascript" type="text/javascript"> +var editor; + tinyMCE.init({ theme : "advanced", mode : "specific_textareas", editor_selector: /(profile-jot-text|prvmail-text)/, - plugins : "bbcode", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect", + plugins : "bbcode,paste", + theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "center", theme_advanced_blockformats : "blockquote,code", + paste_text_sticky : true, entity_encoding : "raw", add_unload_trigger : false, remove_linebreaks : false, @@ -43,8 +46,13 @@ tinyMCE.init({ $('#character-counter').addClass('red'); } $('#character-counter').text(text); - }); - } + }); + + ed.onInit.add(function(ed) { + ed.pasteAsPlainText = true; + }); + + } }); </script> |