source: trunk/library/tiny_mce/themes/advanced/js/source_editor.js @ 4829

Revision 4829, 1.3 KB checked in by airton, 13 years ago (diff)

Ticket #2146 - Implementacao da funcionalidade de multiplas assinaturas - Adicao da biblioteca TinyMCE

  • Property svn:executable set to *
Line 
1tinyMCEPopup.requireLangPack();
2tinyMCEPopup.onInit.add(onLoadInit);
3
4function saveContent() {
5        tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {source_view : true});
6        tinyMCEPopup.close();
7}
8
9function onLoadInit() {
10        tinyMCEPopup.resizeToInnerSize();
11
12        // Remove Gecko spellchecking
13        if (tinymce.isGecko)
14                document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck");
15
16        document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true});
17
18        if (tinyMCEPopup.editor.getParam("theme_advanced_source_editor_wrap", true)) {
19                setWrap('soft');
20                document.getElementById('wraped').checked = true;
21        }
22
23        resizeInputs();
24}
25
26function setWrap(val) {
27        var v, n, s = document.getElementById('htmlSource');
28
29        s.wrap = val;
30
31        if (!tinymce.isIE) {
32                v = s.value;
33                n = s.cloneNode(false);
34                n.setAttribute("wrap", val);
35                s.parentNode.replaceChild(n, s);
36                n.value = v;
37        }
38}
39
40function toggleWordWrap(elm) {
41        if (elm.checked)
42                setWrap('soft');
43        else
44                setWrap('off');
45}
46
47function resizeInputs() {
48        var vp = tinyMCEPopup.dom.getViewPort(window), el;
49
50        el = document.getElementById('htmlSource');
51
52        if (el) {
53                el.style.width = (vp.w - 20) + 'px';
54                el.style.height = (vp.h - 65) + 'px';
55        }
56}
Note: See TracBrowser for help on using the repository browser.