Skip to content

Commit 64f07a4

Browse files
committed
Merge branch 'develop'
2 parents 54edcdf + 449d5a4 commit 64f07a4

File tree

1 file changed

+5
-3
lines changed
  • ui.apps/src/main/content/jcr_root/apps/etoolbox-rollout-manager/clientlibs/rollout-manager-ui/js

1 file changed

+5
-3
lines changed

ui.apps/src/main/content/jcr_root/apps/etoolbox-rollout-manager/clientlibs/rollout-manager-ui/js/console-ui.dialog.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
function getBaseDialog() {
3131
if (!baseDialog) {
3232
baseDialog = new Coral.Dialog().set({
33-
backdrop: Coral.Dialog.backdrop.MODAL,
34-
interaction: 'off',
35-
closable: 'on'
33+
backdrop: Coral.Dialog.backdrop.STATIC,
34+
interaction: 'off'
3635
}).on('coral-overlay:close', function (e) {
3736
baseDialog.classList.remove(LOGGER_DIALOG_CLASS);
3837
e.target.remove();
3938
});
4039
baseDialog.classList.add(BASE_DIALOG_CLASS);
4140
}
41+
baseDialog.closable = 'on';
4242
return baseDialog;
4343
}
4444

@@ -47,6 +47,7 @@
4747
const FINISHED_LABEL = Granite.I18n.get('Rollout');
4848

4949
function loggerDialogFinished(dialog, selectedPath, processingLabel) {
50+
dialog.closable = 'on';
5051
dialog.header.textContent = `${FINISHED_LABEL} ${selectedPath}`;
5152
processingLabel.remove();
5253

@@ -83,6 +84,7 @@
8384
dialog.footer.innerHTML = '';
8485
dialog.content.innerHTML = '';
8586
dialog.classList.add(LOGGER_DIALOG_CLASS);
87+
dialog.closable = 'off';
8688

8789
const processingLabel = document.createElement('p');
8890
processingLabel.textContent = processingMsg;

0 commit comments

Comments
 (0)