12 lines
321 B
JavaScript
12 lines
321 B
JavaScript
|
/*global $, dotclear, jsToolBar */
|
||
|
'use strict';
|
||
|
|
||
|
$(() => {
|
||
|
if (typeof jsToolBar === 'function') {
|
||
|
$('#disclaimer_text').each(function () {
|
||
|
const tbWidgetTextDisclaimer = new jsToolBar(this);
|
||
|
tbWidgetTextDisclaimer.context = 'disclaimer_text';
|
||
|
tbWidgetTextDisclaimer.draw('xhtml');
|
||
|
});
|
||
|
}
|
||
|
});
|