Lines 17-35
$(document).ready(function() {
Link Here
|
17 |
<script language="javascript" type="text/javascript"> |
17 |
<script language="javascript" type="text/javascript"> |
18 |
tinyMCE.init({ |
18 |
tinyMCE.init({ |
19 |
mode : "textareas", |
19 |
mode : "textareas", |
20 |
theme : "advanced", |
20 |
theme : "advanced", |
|
|
21 |
content_css : "[% themelang %]/css/tinymce.css", |
21 |
plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu", |
22 |
plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu", |
22 |
theme_advanced_disable : "underline,strikethrough,styleselect,image", |
23 |
theme_advanced_buttons1 : "save,|,bold,italic,|,cut,copy,paste,|,search,replace,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,|,link,unlink,anchor,cleanup,help,code,advhr,|,print", |
23 |
theme_advanced_buttons1_add_before : "save,separator", |
24 |
theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,removeformat,|,visualaid,|,sub,sup,|,charmap", |
24 |
theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", |
25 |
theme_advanced_buttons3 : "", |
25 |
theme_advanced_buttons3_add_before : "tablecontrols,separator", |
|
|
26 |
theme_advanced_buttons3_add : "iespell,advhr,separator,print", |
27 |
theme_advanced_toolbar_location : "top", |
26 |
theme_advanced_toolbar_location : "top", |
28 |
theme_advanced_toolbar_align : "left", |
27 |
theme_advanced_toolbar_align : "left", |
29 |
theme_advanced_path_location : "bottom", |
28 |
theme_advanced_path_location : "bottom", |
|
|
29 |
theme_advanced_resizing : true, |
30 |
plugin_insertdate_dateFormat : "%Y-%m-%d", |
30 |
plugin_insertdate_dateFormat : "%Y-%m-%d", |
31 |
plugin_insertdate_timeFormat : "%H:%M:%S", |
31 |
plugin_insertdate_timeFormat : "%H:%M:%S", |
32 |
apply_source_formatting : true |
32 |
apply_source_formatting : true, |
|
|
33 |
height : "300", |
34 |
width : "700" |
33 |
}); |
35 |
}); |
34 |
</script> |
36 |
</script> |
35 |
</head> |
37 |
</head> |
36 |
- |
|
|