diff options
Diffstat (limited to 'ext/bg/js/search.js')
| -rw-r--r-- | ext/bg/js/search.js | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 00b7ca4b..fe48773f 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -224,6 +224,7 @@ class DisplaySearch extends Display {                      sentence: {text: query, offset: 0},                      url: window.location.href                  }); +                this.setTitleText(query);              } else {                  this.container.textContent = '';              } @@ -356,6 +357,14 @@ class DisplaySearch extends Display {          this.search.disabled = this.introVisible && (this.query === null || this.query.value.length === 0);      } +    setTitleText(text) { +        // Chrome limits title to 1024 characters +        if (text.length > 1000) { +            text = text.slice(0, 1000) + '...'; +        } +        document.title = `${text} - Yomichan Search`; +    } +      static getSearchQueryFromLocation(url) {          const match = /^[^?#]*\?(?:[^&#]*&)?query=([^&#]*)/.exec(url);          return match !== null ? decodeURIComponent(match[1]) : null; |