Skip to content

Commit

Permalink
Issue #129: Switch from dialogClass to classes (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
indigoxela authored Aug 7, 2024
1 parent 60015af commit 2b42f6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/tinymce-integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@
let classes = dialogSettings.dialogClass ? dialogSettings.dialogClass.split(' ') : [];
classes.push('editor-dialog');
dialogSettings = {
dialogClass: classes.join(' '),
classes: {
'ui-dialog': classes.join(' ')
},
autoResize: true,
modal: true,
target: '#tinymce-modal'
Expand Down

0 comments on commit 2b42f6f

Please sign in to comment.