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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/wysiwyg-systempreferences.inc (+1 lines)
Lines 9-14 function wysiwyg_change (ed){ Link Here
9
    $(original_textarea).trigger("input");
9
    $(original_textarea).trigger("input");
10
}
10
}
11
11
12
tinyMCE.baseURL = "/intranet-tmpl/lib/tiny_mce";
12
tinyMCE.init({
13
tinyMCE.init({
13
    setup : function(ed) {
14
    setup : function(ed) {
14
        ed.onInit.add(function(editor){
15
        ed.onInit.add(function(editor){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (+1 lines)
Lines 267-272 Link Here
267
                });
267
                });
268
            [% END %]
268
            [% END %]
269
        });
269
        });
270
        tinyMCE.baseURL = "/intranet-tmpl/lib/tiny_mce";
270
        tinyMCE.init({
271
        tinyMCE.init({
271
            mode : "textareas",
272
            mode : "textareas",
272
            theme : "advanced",
273
            theme : "advanced",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/edithelp.tt (+1 lines)
Lines 2-7 Link Here
2
<title>Online help</title>
2
<title>Online help</title>
3
<script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce_[% KOHA_VERSION %].js"></script>
3
<script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce_[% KOHA_VERSION %].js"></script>
4
<script type="text/javascript">//<![CDATA[
4
<script type="text/javascript">//<![CDATA[
5
tinyMCE.baseURL = "/intranet-tmpl/lib/tiny_mce";
5
tinyMCE.init({
6
tinyMCE.init({
6
	mode : "textareas",
7
	mode : "textareas",
7
        theme : "advanced",
8
        theme : "advanced",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt (-1 / +1 lines)
Lines 261-266 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
261
    [% END %]
261
    [% END %]
262
    <script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce_[% KOHA_VERSION %].js"></script>
262
    <script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce_[% KOHA_VERSION %].js"></script>
263
    <script type="text/javascript">
263
    <script type="text/javascript">
264
        tinyMCE.baseURL = "/intranet-tmpl/lib/tiny_mce";
264
        tinyMCE.init({
265
        tinyMCE.init({
265
            mode : "textareas",
266
            mode : "textareas",
266
            theme : "advanced",
267
            theme : "advanced",
267
- 

Return to bug 20190