Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-15 17:43:18 +0300
committerJoas Schilling <coding@schilljs.com>2020-06-23 15:22:48 +0300
commit62f99f92484fb10262d755eb6c0102f919b9ae24 (patch)
tree2c77730b7df714119b42940a4155c3388e1339c5 /core/src
parent9fa2d007c1607f152a4efdb2f637f623525cc081 (diff)
Make the confirm dialog modal by default
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/OC/dialogs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/OC/dialogs.js b/core/src/OC/dialogs.js
index 9d724b069ae..b54ca7434c0 100644
--- a/core/src/OC/dialogs.js
+++ b/core/src/OC/dialogs.js
@@ -108,7 +108,7 @@ const Dialogs = {
'none',
buttons,
callback,
- modal
+ modal === undefined ? true : modal
)
},
/**