Skip to content

Commit

Permalink
Update tinymce.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandemmer committed Nov 9, 2024
1 parent 48f12be commit 37357d5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion media/com_jce/editor/tinymce/tinymce.js
Original file line number Diff line number Diff line change
Expand Up @@ -25984,6 +25984,11 @@
for (i = 0; i < this.controls.length; i++) {
var ctrl = this.controls[i], s = ctrl.settings;

if (s.subtype && s.subtype == 'hidden') {
html += ctrl.renderHTML();
continue;
}

html += '<div class="mceFormRow">';

if (s.label) {
Expand Down Expand Up @@ -28518,7 +28523,7 @@
s.button.click.apply(self);
});
}

this.onPostRender.dispatch(this, DOM.get(this.id));
},

Expand Down

0 comments on commit 37357d5

Please sign in to comment.