| Server IP : 54.36.91.62 / Your IP : 216.73.216.208 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/media/com_jce/editor/pro/js/editor/ |
Upload File : |
/**
* Inline development version. Only to be used while developing since it uses document.write to load scripts.
*/
/*jshint smarttabs:true, undef:true, latedef:true, curly:true, bitwise:true, camelcase:true */
/*globals $code */
(function(exports) {
"use strict";
var html = "", baseDir;
var scripts = document.getElementsByTagName('script');
for (var i = 0; i < scripts.length; i++) {
var src = scripts[i].src;
if (src.indexOf('/image.min.js') != -1) {
baseDir = src.substring(0, src.lastIndexOf('/'));
}
}
function writeScripts() {
document.write(html);
}
function load(path) {
if (path.indexOf('.js') !== -1) {
html += '<script type="text/javascript" src="' + baseDir + '/' + path + '"></script>\n';
}
}
load('lib/image/webgl.js');
load('lib/image/filter.js');
load('lib/image/canvas.js');
load('lib/image/editor.js');
writeScripts();
})(this);