Files
iTop/js/DI/widget/text_widget.js
2023-08-31 15:47:58 +02:00

26 lines
304 B
JavaScript

/**
* Example of jquery widget.
*
*/
$.widget( "itop.text_widget",
{
// default options
options:
{
},
// the constructor
_create: function()
{
editor = CKEDITOR.replace(this.element.attr('id'), {
language: 'fr',
uiColor: '#9ec5fe88',
toolbarStartupExpanded: true
});
}
});