comparison static/js/tiny_mce_init_std.js @ 442:6c182ceb7147

Fixing #217; upgrade TinyMCE to 3.4.2 and enable the paste plugin.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 May 2011 00:43:49 +0000
parents 6322b80c1797
children 7854d75427af
comparison
equal deleted inserted replaced
441:33d0c55e57a9 442:6c182ceb7147
1 tinyMCE.init({ 1 tinyMCE.init({
2 mode : "textareas", 2 mode : "textareas",
3 theme : "advanced", 3 theme : "advanced",
4 convert_urls: false, 4 convert_urls: false,
5 theme_advanced_toolbar_location : "top", 5 theme_advanced_toolbar_location : "top",
6 theme_advanced_toolbar_align : "left", 6 theme_advanced_toolbar_align : "left",
7 theme_advanced_buttons1 : "fullscreen,|,preview,|,bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,undo,redo,|,link,unlink,anchor,|,image,cleanup,help,|,code", 7 theme_advanced_buttons1 : "fullscreen,|,preview,|,bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,undo,redo,|,link,unlink,anchor,|,image,cleanup,help,|,code",
8 theme_advanced_buttons2 : "", 8 theme_advanced_buttons2 : "pastetext,pasteword,selectall",
9 theme_advanced_buttons3 : "", 9 theme_advanced_buttons3 : "",
10 auto_cleanup_word : true, 10 auto_cleanup_word : true,
11 plugins : "table,advhr,emotions,insertdatetime,preview,searchreplace,print,contextmenu,fullscreen,media", 11 plugins : "table,advhr,emotions,insertdatetime,preview,searchreplace,print,contextmenu,fullscreen,media,paste",
12 plugin_insertdate_dateFormat : "%m/%d/%Y", 12 paste_auto_cleanup_on_paste: true,
13 plugin_insertdate_timeFormat : "%H:%M:%S", 13 plugin_insertdate_dateFormat : "%m/%d/%Y",
14 fullscreen_settings : { 14 plugin_insertdate_timeFormat : "%H:%M:%S",
15 theme_advanced_path_location : "top", 15 fullscreen_settings : {
16 theme_advanced_buttons1 : "fullscreen,|,preview,|,cut,copy,paste,|,undo,redo,|,search,replace,|,code,|,cleanup,|,bold,italic,underline,strikethrough,|,forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,|,help", 16 theme_advanced_path_location : "top",
17 theme_advanced_buttons2 : "removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bullist,numlist,outdent,indent,|,link,unlink,anchor", 17 theme_advanced_buttons1 : "fullscreen,|,preview,|,cut,copy,paste,|,undo,redo,|,search,replace,|,code,|,cleanup,|,bold,italic,underline,strikethrough,|,forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,|,help",
18 theme_advanced_buttons3 : "sub,sup,|,image,insertdate,inserttime,|,tablecontrols,|,hr,advhr,visualaid,|,charmap,emotions,|,print" 18 theme_advanced_buttons2 : "removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bullist,numlist,outdent,indent,|,link,unlink,anchor",
19 } 19 theme_advanced_buttons3 : "sub,sup,|,image,insertdate,inserttime,|,tablecontrols,|,hr,advhr,visualaid,|,charmap,emotions,|,print",
20 theme_advanced_buttons4 : "pastetext,pasteword,selectall"
21 }
20 }); 22 });