mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 13:44:19 +01:00
26 lines
304 B
JavaScript
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
|
|
});
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|