From dc273c0c73dd39e8cad45e591b02231cb2cbed8c Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Thu, 15 Sep 2016 22:44:33 -0700 Subject: [PATCH] Cleanup --- ext/fg/js/{client.js => driver.js} | 4 ++-- ext/manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename ext/fg/js/{client.js => driver.js} (99%) diff --git a/ext/fg/js/client.js b/ext/fg/js/driver.js similarity index 99% rename from ext/fg/js/client.js rename to 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(); diff --git a/ext/manifest.json b/ext/manifest.json index c3864e10..fcf7cef7 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -16,7 +16,7 @@ "fg/js/source-element.js", "fg/js/popup.js", "fg/js/util.js", - "fg/js/client.js" + "fg/js/driver.js" ], "css": ["fg/css/client.css"] }],