diff options
author | Friendika <info@friendika.com> | 2011-01-31 14:21:23 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-31 14:21:23 -0800 |
commit | fc20fb17c299100fd39e900f20c70d823baaebdf (patch) | |
tree | d5397efd24e007fa4969f0477d7b372bc3e3e901 /view | |
parent | 1908c7ad8217f35bffd32458de2ab5646f57affe (diff) | |
download | volse-hubzilla-fc20fb17c299100fd39e900f20c70d823baaebdf.tar.gz volse-hubzilla-fc20fb17c299100fd39e900f20c70d823baaebdf.tar.bz2 volse-hubzilla-fc20fb17c299100fd39e900f20c70d823baaebdf.zip |
force text paste in editor
Diffstat (limited to 'view')
-rw-r--r-- | view/en/jot-header.tpl | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/view/en/jot-header.tpl b/view/en/jot-header.tpl index b687f65a6..93eb440a4 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", + plugins : "bbcode,paste", theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect", 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> |