Merge pull request #21417 from nextcloud/bugfix/noid/modal-support-for-vue-apps

Fix modal support for vue apps
This commit is contained in:
Joas Schilling 2020-06-17 15:35:52 +02:00 committed by GitHub
commit ee59029e62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -107,7 +107,7 @@ const Dialogs = {
'none',
buttons,
callback,
modal
modal === undefined ? true : modal
)
},
/**
@ -1245,7 +1245,7 @@ const Dialogs = {
dir: '',
name: '' // Ugly but works ;)
}, { escapeFunction: null }).prependTo(this.$dirTree)
},
/**
* handle selection made in the tree list

View File

@ -72,6 +72,10 @@
height: 100%;
}
body.dark .oc-dialog-dim {
opacity: .8;
}
.oc-dialog-content {
width: 100%;
max-width: 550px;

View File

@ -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()