2021-10-30 13:31:51 +00:00
|
|
|
/*global $, dotclear, jsToolBar */
|
|
|
|
'use strict';
|
2021-09-10 19:06:49 +00:00
|
|
|
|
2021-10-30 13:31:51 +00:00
|
|
|
$(() => {
|
2023-04-25 13:05:47 +00:00
|
|
|
$('#post-wtext-form h4').toggleWithLegend(
|
|
|
|
$('#post-wtext-form').children().not('h4'),
|
|
|
|
{
|
|
|
|
user_pref:'dcx_pwt_form',
|
|
|
|
legend_click:true
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$('#post_wtext').each(function () {
|
|
|
|
if (typeof jsToolBar === 'function') {
|
|
|
|
const tbWidgetText = new jsToolBar(this);
|
|
|
|
tbWidgetText.context = 'pwt';
|
|
|
|
tbWidgetText.draw('xhtml');
|
|
|
|
}
|
|
|
|
});
|
2021-10-30 13:31:51 +00:00
|
|
|
});
|