From 0e1627414f653772c4ca997d6c8f00c414b9cdc5 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Tue, 25 Apr 2023 11:47:13 +0200 Subject: [PATCH] fix wrong editor id --- js/backend.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/backend.js b/js/backend.js index 3ff3ed5..6072cef 100644 --- a/js/backend.js +++ b/js/backend.js @@ -3,9 +3,9 @@ $(() => { if (typeof jsToolBar === 'function') { - $('#disclaimer_text').each(function () { + $('#construction_message').each(function () { const tbWidgetTextDisclaimer = new jsToolBar(this); - tbWidgetTextDisclaimer.context = 'disclaimer_text'; + tbWidgetTextDisclaimer.context = 'construction_message'; tbWidgetTextDisclaimer.draw('xhtml'); }); }