return focus to the previously focused element after closing the dialog, fixes #861

This commit is contained in:
zadam
2020-02-09 10:00:13 +01:00
parent 990a84c202
commit 402718d293
26 changed files with 74 additions and 112 deletions

View File

@@ -287,8 +287,6 @@ function initKoPlugins() {
}
export async function showDialog() {
utils.closeActiveDialog();
await libraryLoader.requireLibrary(libraryLoader.KNOCKOUT);
// lazily apply bindings on first use
@@ -300,11 +298,9 @@ export async function showDialog() {
ko.applyBindings(attributesModel, $dialog[0]);
}
glob.activeDialog = $dialog;
await attributesModel.loadAttributes();
$dialog.modal();
utils.openDialog($dialog);
}
$dialog.on('focus', '.attribute-name', function (e) {