This commit is contained in:
Alex Yatskov 2016-09-15 22:44:33 -07:00
parent b969e8952c
commit dc273c0c73
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
*/ */
class Client { class Driver {
constructor() { constructor() {
this.popup = new Popup(); this.popup = new Popup();
this.audio = {}; this.audio = {};
@ -202,4 +202,4 @@ class Client {
} }
} }
window.yomiClient = new Client(); window.driver = new Driver();

View File

@ -16,7 +16,7 @@
"fg/js/source-element.js", "fg/js/source-element.js",
"fg/js/popup.js", "fg/js/popup.js",
"fg/js/util.js", "fg/js/util.js",
"fg/js/client.js" "fg/js/driver.js"
], ],
"css": ["fg/css/client.css"] "css": ["fg/css/client.css"]
}], }],