summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-15 16:42:45 +0200
committerJoas Schilling <coding@schilljs.com>2020-06-23 14:09:44 +0200
commit7723529d3170d33951f1ae5caf6ebd5c87cea1b8 (patch)
tree0463e393b5104e4e74cc8fb409c0ccbc8904e3e8 /core
parent6b5db20fc9f101478809c0d34f630d35dfcd9d93 (diff)
downloadnextcloud-server-7723529d3170d33951f1ae5caf6ebd5c87cea1b8.tar.gz
nextcloud-server-7723529d3170d33951f1ae5caf6ebd5c87cea1b8.zip
Fix modal support for vue apps
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r--core/src/jquery/ocdialog.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/src/jquery/ocdialog.js b/core/src/jquery/ocdialog.js
index 518a28f75d3..8c4a7602a78 100644
--- a/core/src/jquery/ocdialog.js
+++ b/core/src/jquery/ocdialog.js
@@ -210,9 +210,14 @@ $.widget('oc.ocdialog', {
}
const self = this
+ let contentDiv = $('#content')
+ if (contentDiv.length === 0) {
+ // nextcloud-vue compatibility
+ contentDiv = $('.content')
+ }
this.overlay = $('<div>')
.addClass('oc-dialog-dim')
- .appendTo($('#content'))
+ .appendTo(contentDiv)
this.overlay.on('click keydown keyup', function(event) {
if (event.target !== self.$dialog.get(0) && self.$dialog.find($(event.target)).length === 0) {
event.preventDefault()