Bug 16388: Use existing 'execute' parameter instead of creating a new one
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / wysiwyg-systempreferences.inc
1 [% #Enable tinymce for system preferences %]
2 <script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce.js"></script>
3 <script>
4
5 [%# Save TinyMCE content and trigger an event on the original element %]
6 function wysiwyg_change (ed){
7     ed.save();
8     var original_textarea = ed.getElement();
9     $(original_textarea).trigger("input");
10 }
11
12 tinyMCE.init({
13     setup : function(ed) {
14         ed.onInit.add(function(editor){
15             [%-
16             #Ideally, it would be nice just to use the "oninput" event, which captures keyboard input, dragging, pasting, etc.
17             #However, it doesn't work in IE when the event listener is for an element which is "contenteditable". Since TinyMCE
18             #uses a "contenteditable" body element in an iframe element, it's never going to fire in IE.
19
20             #We can get around this a bit by using "onkeyup" and "ondragend".
21
22             #"ondragend" occurs after you drag content within the editor. "ondrop" is for when you drag content from outside the
23             #editor but it doesn't "dirty" the editor, which makes it useless, as the editor won't save unless it's dirty.
24             #"onpaste" is useless in this same way.
25
26             #Reference:
27             #https://developer.mozilla.org/en-US/docs/Web/Events/input
28             #https://connect.microsoft.com/IE/feedbackdetail/view/794285
29             -%]
30
31             tinyMCE.dom.Event.bind(editor.getBody(), 'input keyup dragend', function(e){
32                 if (ed.isDirty()){
33                     wysiwyg_change(ed);
34                 }
35             });
36         });
37
38         // Register change when TinyMCE command returns isDirty()
39         ed.onExecCommand.add(function(ed, cmd, ui, val) {
40             if (ed.isDirty()){
41                 wysiwyg_change(ed);
42             }
43         });
44
45     },
46     mode : "specific_textareas",
47     editor_selector : "mce",
48     theme : "advanced",
49     content_css : "[% interface %]/[% theme %]/css/tinymce.css",
50     plugins : "table,save,advhr,advlink,contextmenu,advimage",
51     theme_advanced_buttons1 : "bold,italic,|,cut,copy,paste,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,|,image,link,unlink,anchor,cleanup,help,code,advhr,",
52     theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,removeformat,|,visualaid,|,sub,sup,|,charmap|,forecolor,backcolor",
53     theme_advanced_buttons3 : "",
54     theme_advanced_toolbar_location : "top",
55     theme_advanced_toolbar_align : "left",
56     theme_advanced_path_location : "bottom",
57     theme_advanced_resizing : true,
58     apply_source_formatting : true
59 });
60 //]]>
61 </script>