refactoring

This commit is contained in:
Devaev Maxim 2018-11-12 10:50:44 +03:00
parent f540114abe
commit c38e22591e
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,6 @@ function main() {
$("bad-browser-modal").style.visibility = "visible";
} else {
ui = new Ui();
new Session(new Streamer(), new Atx(), new Hid(), new Msd());
new Session(new Hid(), new Atx(), new Msd(), new Streamer());
}
}

View File

@ -1,4 +1,4 @@
function Session(streamer, atx, hid, msd) {
function Session(hid, atx, msd, streamer) {
// var self = this;
/********************************************************************************/