This commit is contained in:
Alex Yatskov 2017-07-20 21:32:17 -07:00
parent d6c2f1cc38
commit a0e2d9cb72
4 changed files with 4 additions and 4 deletions

View File

@ -21,6 +21,6 @@
<script src="/bg/js/database.js"></script> <script src="/bg/js/database.js"></script>
<script src="/bg/js/deinflector.js"></script> <script src="/bg/js/deinflector.js"></script>
<script src="/bg/js/translator.js"></script> <script src="/bg/js/translator.js"></script>
<script src="/bg/js/yomichan.js"></script> <script src="/bg/js/backend.js"></script>
</body> </body>
</html> </html>

View File

@ -17,7 +17,7 @@
*/ */
window.yomichan = new class { window.yomichanBackend = new class {
constructor() { constructor() {
handlebarsRegister(); handlebarsRegister();

View File

@ -18,7 +18,7 @@
function instYomi() { function instYomi() {
return chrome.extension.getBackgroundPage().yomichan; return chrome.extension.getBackgroundPage().yomichanBackend;
} }
function instDb() { function instDb() {

View File

@ -17,7 +17,7 @@
*/ */
window.frontend = new class { window.yomichanFrontend = new class {
constructor() { constructor() {
this.popup = new Popup(); this.popup = new Popup();
this.popupTimer = null; this.popupTimer = null;