diff options
Diffstat (limited to 'ext/fg/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)); |