summaryrefslogtreecommitdiff
path: root/ext/fg
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-09-15 22:44:33 -0700
committerAlex Yatskov <alex@foosoft.net>2016-09-15 22:44:33 -0700
commitdc273c0c73dd39e8cad45e591b02231cb2cbed8c (patch)
tree7d647e4f445930a416e75e924acb96921aff61f3 /ext/fg
parentb969e8952c551fdc7c150dcc111eccdc90ac7408 (diff)
Cleanup
Diffstat (limited to 'ext/fg')
-rw-r--r--ext/fg/js/driver.js (renamed from ext/fg/js/client.js)4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/client.js b/ext/fg/js/driver.js
index 717b5873..de097980 100644
--- a/ext/fg/js/client.js
+++ b/ext/fg/js/driver.js
@@ -17,7 +17,7 @@
*/
-class Client {
+class Driver {
constructor() {
this.popup = new Popup();
this.audio = {};
@@ -202,4 +202,4 @@ class Client {
}
}
-window.yomiClient = new Client();
+window.driver = new Driver();