| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.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 : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/Dolibarr/htdocs/includes/jquery/plugins/jeditable/ |
Upload File : |
/*
* CKEditor input for Jeditable
*
* Adapted from Wysiwyg input for Jeditable by Mike Tuupola
* http://www.appelsiini.net/2008/9/wysiwyg-for-jeditable
*
* Copyright (c) 2009 Jeremy Bell
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Depends on CKEditor:
* http://ckeditor/
*
*/
(function($) {
$.generateId = function() {
return arguments.callee.prefix + arguments.callee.count++;
};
$.generateId.prefix = 'jq$';
$.generateId.count = 0;
$.fn.generateId = function() {
return this.each(function() {
this.id = $.generateId();
});
};
})(jQuery);
(function($) {
$.editable.addInputType('ckeditor', {
/* Use default textarea instead of writing code here again. */
//element : $.editable.types.textarea.element,
element : function(settings, original) {
/* Hide textarea to avoid flicker. */
var textarea = $('<textarea>').css("opacity", "0").generateId();
if (settings.rows) {
textarea.attr('rows', settings.rows);
} else {
textarea.height(settings.height);
}
if (settings.cols) {
textarea.attr('cols', settings.cols);
} else {
textarea.width(settings.width);
}
$(this).append(textarea);
return(textarea);
},
content : function(string, settings, original) {
/* jWYSIWYG plugin uses .text() instead of .val() */
/* For some reason it did not work work with generated */
/* textareas so I am forcing the value here with .text() */
$('textarea', this).text(string);
},
plugin : function(settings, original) {
var self = this;
if (settings.ckeditor) {
setTimeout(function() { CKEDITOR.replace($('textarea', self).attr('id'), settings.ckeditor); }, 0);
} else {
setTimeout(function() { CKEDITOR.replace($('textarea', self).attr('id')); }, 0);
}
},
submit : function(settings, original) {
$('textarea', this).val(CKEDITOR.instances[$('textarea', this).attr('id')].getData());
CKEDITOR.instances[$('textarea', this).attr('id')].destroy();
}
});
})(jQuery);