Skip to content

Commit

Permalink
Fix prompt z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
AFaust committed Feb 19, 2024
1 parent 246242b commit 2d53683
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ if (typeof OOTBee === 'undefined' || !OOTBee)
{
title: this.msg('message.failure'),
text: res.json && res.json.message ? res.json.message : this.msg('error.script.save', filename),
zIndex: 5 // added to internal default - high enough offset to ensure it should overlay any part of editor
zIndex: 10 // added to internal default - high enough offset to ensure it should overlay any part of editor
});

},
Expand Down Expand Up @@ -2295,7 +2295,7 @@ if (typeof OOTBee === 'undefined' || !OOTBee)
{
title: this.msg('message.failure'),
text: res.json && res.json.message ? res.json.message : this.msg('error.script.save', filename),
zIndex: 5 // added to internal default - high enough offset to ensure it should overlay any part of editor
zIndex: 10 // added to internal default - high enough offset to ensure it should overlay any part of editor
});

},
Expand Down Expand Up @@ -2352,7 +2352,8 @@ if (typeof OOTBee === 'undefined' || !OOTBee)
this.destroy();
},
isDefault: true
}]
}],
zIndex: 10 // added to internal default - high enough offset to ensure it should overlay any part of editor
});
}
},
Expand Down

0 comments on commit 2d53683

Please sign in to comment.