annotate static/js/tiny_mce_init_std.js @ 481:9f888dbe61ce

Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author Brian Neal <bgneal@gmail.com>
date Fri, 07 Oct 2011 02:11:33 +0000
parents 6c182ceb7147
children 7854d75427af
rev   line source
bgneal@442 1 tinyMCE.init({
bgneal@442 2 mode : "textareas",
bgneal@442 3 theme : "advanced",
bgneal@442 4 convert_urls: false,
bgneal@442 5 theme_advanced_toolbar_location : "top",
bgneal@442 6 theme_advanced_toolbar_align : "left",
bgneal@442 7 theme_advanced_buttons1 : "fullscreen,|,preview,|,bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,undo,redo,|,link,unlink,anchor,|,image,cleanup,help,|,code",
bgneal@442 8 theme_advanced_buttons2 : "pastetext,pasteword,selectall",
bgneal@442 9 theme_advanced_buttons3 : "",
bgneal@442 10 auto_cleanup_word : true,
bgneal@442 11 plugins : "table,advhr,emotions,insertdatetime,preview,searchreplace,print,contextmenu,fullscreen,media,paste",
bgneal@442 12 paste_auto_cleanup_on_paste: true,
bgneal@442 13 plugin_insertdate_dateFormat : "%m/%d/%Y",
bgneal@442 14 plugin_insertdate_timeFormat : "%H:%M:%S",
bgneal@442 15 fullscreen_settings : {
bgneal@442 16 theme_advanced_path_location : "top",
bgneal@442 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",
bgneal@442 18 theme_advanced_buttons2 : "removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bullist,numlist,outdent,indent,|,link,unlink,anchor",
bgneal@442 19 theme_advanced_buttons3 : "sub,sup,|,image,insertdate,inserttime,|,tablecontrols,|,hr,advhr,visualaid,|,charmap,emotions,|,print",
bgneal@442 20 theme_advanced_buttons4 : "pastetext,pasteword,selectall"
bgneal@442 21 }
bgneal@442 22 });