Skip to content

Commit

Permalink
fix(pat tinymce): fix zIndex for link modals in tinymce to be higher …
Browse files Browse the repository at this point in the history
…than 1300
  • Loading branch information
MrTango committed Aug 11, 2022
1 parent 50c1696 commit 2618a38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pat/tinymce/js/links.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,10 @@ export default Base.extend({
reloadWindowOnClose: false,
},
actionOptions: { reloadWindowOnClose: false },
backdropOptions: { closeOnClick: false },
backdropOptions: {
zIndex: "1340",
closeOnClick: false
},
});
self.modal.on("shown", (e) => {
self.modalShown.apply(self, [e]);
Expand Down

0 comments on commit 2618a38

Please sign in to comment.