1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
tinyMCE.init ({
mode : "textareas",
width : "658",
height : "400",
theme : "advanced",
language : "de",
gecko_spellcheck : true,
convert_urls : false,
relative_urls : false,
remove_script_host : false,
verify_html : false,
visual : false,
fix_content_duplication : false,
trim_span_elements : false,
plugins : "fullscreen,insertdatetime,table,paste,ibrowser",
content_css : "../data/css/tiny.css",
theme_advanced_resize_horizontal : false,
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_blockformats : "h1,h2,h3,h4,h5,h6",
theme_advanced_buttons1 : "formatselect,fontselect,fontsizeselect,|,forecolor,|,backcolor,|,hr,|,fullscreen,visualaid",
theme_advanced_buttons2 : "undo,redo,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,paste,pastetext,pasteword,|,bullist,numlist,|,outdent,indent",
theme_advanced_buttons3 : "link,unlink,|,anchor,|,image,|,code,|,table,|,charmap,|,insertdate,inserttime,|,sub,sup,|,removeformat,cleanup,|,ibrowser",
fullscreen_new_window : "true",
theme_visualaid : "false",
theme_advanced_resizing : "true",
theme_advanced_statusbar_location : "bottom",
fullscreen_settings : {
theme_advanced_path_location : "top"
}
});
|