2022-12-31 18:07:05 +00:00
|
|
|
/*global $, dotclear, jsToolBar */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
$(() => {
|
|
|
|
if (typeof jsToolBar === 'function') {
|
2023-04-25 09:47:13 +00:00
|
|
|
$('#construction_message').each(function () {
|
2022-12-31 18:07:05 +00:00
|
|
|
const tbWidgetTextDisclaimer = new jsToolBar(this);
|
2023-04-25 09:47:13 +00:00
|
|
|
tbWidgetTextDisclaimer.context = 'construction_message';
|
2022-12-31 18:07:05 +00:00
|
|
|
tbWidgetTextDisclaimer.draw('xhtml');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|