diff options
| -rw-r--r-- | ext/bg/js/search.js | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index fe48773f..b2bc172f 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -224,10 +224,10 @@ class DisplaySearch extends Display {                      sentence: {text: query, offset: 0},                      url: window.location.href                  }); -                this.setTitleText(query);              } else {                  this.container.textContent = '';              } +            this.setTitleText(query);              window.parent.postMessage('popupClose', '*');          } catch (e) {              this.onError(e); @@ -362,7 +362,12 @@ class DisplaySearch extends Display {          if (text.length > 1000) {              text = text.slice(0, 1000) + '...';          } -        document.title = `${text} - Yomichan Search`; + +        if (text.length === 0) { +            document.title = 'Yomichan Search'; +        } else { +            document.title = `${text} - Yomichan Search`; +        }      }      static getSearchQueryFromLocation(url) {  |