Fix UI issue with PPF in the file picker

This commit is contained in:
yflory
2018-06-07 15:42:16 +02:00
parent 574d99f9db
commit af2a13e5ae
2 changed files with 8 additions and 2 deletions

View File

@@ -144,13 +144,15 @@ define([
};
dialog.frame = function (content) {
return h('div.alertify', {
return $(h('div.alertify', {
tabindex: 1,
}, [
h('div.dialog', [
h('div', content),
])
]);
])).click(function (e) {
e.stopPropagation();
})[0];
};
/**