We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 462ea69 commit ba97c84Copy full SHA for ba97c84
1 file changed
js/scripts.js
@@ -1134,6 +1134,11 @@ var plugin_formcreator = new function() {
1134
}).fail(function () {
1135
displayAjaxMessageAfterRedirect();
1136
}).done(function () {
1137
+ // Remove unclosed TinyMCE toolbar
1138
+ var tinyToolbar = document.querySelector('.tox-tinymce-aux');
1139
+ if (tinyToolbar) {
1140
+ tinyToolbar.parentNode.removeChild(tinyToolbar);
1141
+ }
1142
that.showTranslationEditor(form);
1143
});
1144
}
0 commit comments