diff options
Diffstat (limited to 'ext/bg')
-rw-r--r-- | ext/bg/js/options.js | 1 | ||||
-rw-r--r-- | ext/bg/js/popup.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 84ecc6e3..eb8e32d8 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -234,6 +234,7 @@ function onDictionaryUpdateUrl() { $('#dict-import').prop('disabled', $(this).val().length === 0); } + /* * Anki */ diff --git a/ext/bg/js/popup.js b/ext/bg/js/popup.js index 37a76832..9f2567df 100644 --- a/ext/bg/js/popup.js +++ b/ext/bg/js/popup.js @@ -18,7 +18,7 @@ $(document).ready(() => { - $('#open-search').click(() => window.open(chrome.extension.getURL('bg/search.html'))); + $('#open-search').click(() => window.open(chrome.extension.getURL('/bg/search.html'))); $('#open-options').click(() => chrome.runtime.openOptionsPage()); $('#open-help').click(() => window.open('http://foosoft.net/projects/yomichan')); |