diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:20:39 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:20:39 -0700 |
commit | 6f45cc287112030387f33169c762ee9448c0c65c (patch) | |
tree | 6c6effd9305e14569b5222c6a58f00724c6029fc /ext/fg/js/client.js | |
parent | f079db0471424a873f22315c7911571d467e97ad (diff) |
Splitting out header and footer templates
Diffstat (limited to 'ext/fg/js/client.js')
-rw-r--r-- | ext/fg/js/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/client.js b/ext/fg/js/client.js index 4df19594..aae051fa 100644 --- a/ext/fg/js/client.js +++ b/ext/fg/js/client.js @@ -119,7 +119,7 @@ class Client { this.hidePopup(); } else { const params = {defs: results, root: chrome.extension.getURL('fg'), activeDict: this.activeDict}; - renderText(params, 'defs.html', (html) => this.showPopup(range, html, popupQuery, length)); + renderText(params, 'term-list.html', (html) => this.showPopup(range, html, popupQuery, length)); } }); } |