Server IP : 85.214.239.14 / Your IP : 13.58.105.80 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/srv/modoboa/instance/sitestatic/ckeditor/ |
Upload File : |
/* global CKEDITOR */ ;(function() { var el = document.getElementById('ckeditor-init-script'); if (el && !window.CKEDITOR_BASEPATH) { window.CKEDITOR_BASEPATH = el.getAttribute('data-ckeditor-basepath'); } // Polyfill from https://developer.mozilla.org/en/docs/Web/API/Element/matches if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.matchesSelector || Element.prototype.mozMatchesSelector || Element.prototype.msMatchesSelector || Element.prototype.oMatchesSelector || Element.prototype.webkitMatchesSelector || function(s) { var matches = (this.document || this.ownerDocument).querySelectorAll(s), i = matches.length; while (--i >= 0 && matches.item(i) !== this) {} return i > -1; }; } function runInitialisers() { if (!window.CKEDITOR) { setTimeout(runInitialisers, 100); return; } initialiseCKEditor(); initialiseCKEditorInInlinedForms(); } if (document.readyState != 'loading' && document.body) { document.addEventListener('DOMContentLoaded', initialiseCKEditor); runInitialisers(); } else { document.addEventListener('DOMContentLoaded', runInitialisers); } function initialiseCKEditor() { var textareas = Array.prototype.slice.call(document.querySelectorAll('textarea[data-type=ckeditortype]')); for (var i=0; i<textareas.length; ++i) { var t = textareas[i]; if (t.getAttribute('data-processed') == '0' && t.id.indexOf('__prefix__') == -1) { t.setAttribute('data-processed', '1'); var ext = JSON.parse(t.getAttribute('data-external-plugin-resources')); for (var j=0; j<ext.length; ++j) { CKEDITOR.plugins.addExternal(ext[j][0], ext[j][1], ext[j][2]); } CKEDITOR.replace(t.id, JSON.parse(t.getAttribute('data-config'))); } } } function initialiseCKEditorInInlinedForms() { document.body.addEventListener('click', function(e) { if (e.target && ( e.target.matches('.add-row a') || e.target.matches('.grp-add-handler') )) { initialiseCKEditor(); } }); } }());