diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-01-22 19:22:53 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-01-22 19:22:53 -0800 |
commit | f808221470b607996aa1554ebd15afa26bcfabd1 (patch) | |
tree | 9cc1a3fa0985eee61f99d192b808ab538db78ff4 /ext/fg/js/frame.js | |
parent | 985c5df328ccff8492576d005a00fae828f56bab (diff) |
wip
Diffstat (limited to 'ext/fg/js/frame.js')
-rw-r--r-- | ext/fg/js/frame.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 2443f85b..66fa131d 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -43,7 +43,7 @@ class Frame { this.showSpinner(false); window.scrollTo(0, 0); - renderText(context, 'term-list.html').then(content => { + renderText(context, 'terms.html').then(content => { $('.content').html(content); $('.action-add-note').click(this.onAddNote.bind(this)); @@ -73,7 +73,7 @@ class Frame { this.showSpinner(false); window.scrollTo(0, 0); - renderText(context, 'kanji-list.html').then(content => { + renderText(context, 'kanji.html').then(content => { $('.content').html(content); $('.action-add-note').click(this.onAddNote.bind(this)); |