Skip to content

Commit

Permalink
only close color config when use click exit
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Aug 28, 2024
1 parent 2c501d2 commit f8ad826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,7 @@ step.util = {
var element = document.getElementById('grammarClrModal');
if (element) element.parentNode.removeChild(element);
var jsVersion = ($.getUrlVars().indexOf("debug") > -1) ? "" : step.state.getCurrentVersion() + ".min.";
$('<div id="grammarClrModal" class="modal selectModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">' +
$('<div id="grammarClrModal" class="modal selectModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static">' +
'<div class="modal-dialog">' +
'<div class="modal-content stepModalFgBg"">' +
'<link href="css/color_code_grammar.' + jsVersion + 'css" rel="stylesheet"/>' +
Expand Down

0 comments on commit f8ad826

Please sign in to comment.