summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--web/js/main.js2
-rw-r--r--web/js/session.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/js/main.js b/web/js/main.js
index e68b6ae9..d82939c9 100644
--- a/web/js/main.js
+++ b/web/js/main.js
@@ -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());
}
}
diff --git a/web/js/session.js b/web/js/session.js
index e93f0516..9f726a1d 100644
--- a/web/js/session.js
+++ b/web/js/session.js
@@ -1,4 +1,4 @@
-function Session(streamer, atx, hid, msd) {
+function Session(hid, atx, msd, streamer) {
// var self = this;
/********************************************************************************/