diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-15 14:19:54 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-15 14:19:54 +0100 |
commit | 70cf5ae3c79ad1b94e9d5fab82325d55a12761c0 (patch) | |
tree | 5aeffd36453e9b890442a682623c84aee276836e /view/it/msg-header.tpl | |
parent | dd8bbe820294ce6e0ca2e17f8783cb125b9871db (diff) | |
parent | 473786d3a09a2210b2fe55a00d2bac5d8d207d52 (diff) | |
download | volse-hubzilla-70cf5ae3c79ad1b94e9d5fab82325d55a12761c0.tar.gz volse-hubzilla-70cf5ae3c79ad1b94e9d5fab82325d55a12761c0.tar.bz2 volse-hubzilla-70cf5ae3c79ad1b94e9d5fab82325d55a12761c0.zip |
Merge remote-tracking branch 'friendika-master/master'
Diffstat (limited to 'view/it/msg-header.tpl')
-rw-r--r-- | view/it/msg-header.tpl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/view/it/msg-header.tpl b/view/it/msg-header.tpl index f6f437864..69e813ae2 100644 --- a/view/it/msg-header.tpl +++ b/view/it/msg-header.tpl @@ -6,14 +6,14 @@ tinyMCE.init({ theme : "advanced", mode : "specific_textareas", editor_selector: /(profile-jot-text|prvmail-text)/, - plugins : "bbcode", + plugins : "bbcode,paste", theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "center", - theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle", - content_css : "bbcode.css", + theme_advanced_blockformats : "blockquote,code", + paste_text_sticky : true, entity_encoding : "raw", add_unload_trigger : false, remove_linebreaks : false, @@ -44,8 +44,12 @@ tinyMCE.init({ $('#character-counter').addClass('red'); } $('#character-counter').text(text); - }); - } + }); + + ed.onInit.add(function(ed) { + ed.pasteAsPlainText = true; + }); + } }); </script> |