Some small cleanups/corrections

This commit is contained in:
the-djmaze 2022-03-03 19:22:17 +01:00
parent 28b32edfab
commit f0b0d21386
5 changed files with 12 additions and 15 deletions

View file

@ -54,9 +54,8 @@ const
if (!vmDom.showModal) {
vmDom.classList.add('polyfill');
vmDom.showModal = () => {
if (!vmDom.backdrop) {
vmDom.backdrop ||
vmDom.before(vmDom.backdrop = Element.fromHTML('<div class="dialog-backdrop"></div>'));
}
vmDom.setAttribute('open','');
vmDom.open = true;
vmDom.returnValue = null;

View file

@ -66,7 +66,7 @@ export class MailMessageView extends AbstractViewRight {
const
/**
* @param {Function} fExecute
* @param {(Function|boolean|null)=} fCanExecute = true
* @param {Function} fCanExecute = true
* @returns {Function}
*/
createCommand = (fExecute, fCanExecute) => {