View | Details | Raw Unified | Return to bug 6884
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/tinymce.css (+4 lines)
Line 0 Link Here
1
body, td, pre {
2
    font-family: Arial,Helvetica,sans-serif;
3
    font-size: 13px;
4
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/edithelp.tt (-4 / +5 lines)
Lines 5-16 Link Here
5
tinyMCE.init({
5
tinyMCE.init({
6
	mode : "textareas",
6
	mode : "textareas",
7
        theme : "advanced",
7
        theme : "advanced",
8
    content_css : "[% themelang %]/css/tinymce.css",
8
	plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu",
9
	plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu",
9
        theme_advanced_disable : "underline,strikethrough,styleselect,image",
10
        theme_advanced_disable : "underline,strikethrough,styleselect,image",
10
	theme_advanced_buttons1_add_before : "save,separator",
11
	theme_advanced_buttons1_add_before : "save,|",
11
	theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
12
	theme_advanced_buttons2_add_before: "cut,copy,paste,|,search,replace,|",
12
	theme_advanced_buttons3_add_before : "tablecontrols,separator",
13
	theme_advanced_buttons3_add_before : "tablecontrols,|",
13
	theme_advanced_buttons3_add : "iespell,advhr,separator,print",
14
	theme_advanced_buttons3_add : "iespell,advhr,|,print",
14
	theme_advanced_toolbar_location : "top",
15
	theme_advanced_toolbar_location : "top",
15
	theme_advanced_toolbar_align : "left",
16
	theme_advanced_toolbar_align : "left",
16
	theme_advanced_path_location : "bottom",
17
	theme_advanced_path_location : "bottom",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt (-8 / +9 lines)
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
- 

Return to bug 6884