diff options
author | Friendika <info@friendika.com> | 2011-02-02 23:24:04 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-02 23:24:04 -0800 |
commit | 33b2490a91d844300bff1bade8bb21d1978442fd (patch) | |
tree | 257d0313039bfb8a31e460030a054052e5f6e373 /view/de | |
parent | 2a4d1fa858bcab0c7e54c1c0a847537cacbed168 (diff) | |
parent | 2f6ef7b5eb312a9267ece2eb5aa571d857b6effb (diff) | |
download | volse-hubzilla-33b2490a91d844300bff1bade8bb21d1978442fd.tar.gz volse-hubzilla-33b2490a91d844300bff1bade8bb21d1978442fd.tar.bz2 volse-hubzilla-33b2490a91d844300bff1bade8bb21d1978442fd.zip |
Merge branch 'fabrixxm-master'
Diffstat (limited to 'view/de')
-rw-r--r-- | view/de/jot-header.tpl | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/view/de/jot-header.tpl b/view/de/jot-header.tpl index 508715dca..41abdf0f3 100644 --- a/view/de/jot-header.tpl +++ b/view/de/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> |