modal dialog processing like a window

This commit is contained in:
Devaev Maxim
2018-08-27 14:48:44 +03:00
parent 9a243eaa04
commit 8aee773c1c
11 changed files with 102 additions and 90 deletions

View File

@@ -1,3 +1,5 @@
var ui;
function main() {
if (
!window.navigator
@@ -7,8 +9,8 @@ function main() {
) {
$("bad-browser-modal").style.visibility = "visible";
} else {
var ui = new Ui();
ui = new Ui();
new Session(new Atx(), new Hid(), new Msd());
new Stream(ui);
new Stream();
}
}