From a5a6351cceacde6f440d28ff7f9afa7c6c1ff251 Mon Sep 17 00:00:00 2001 From: siikamiika Date: Fri, 6 Dec 2019 14:56:36 +0200 Subject: [PATCH] revert search page title on empty query --- ext/bg/js/search.js | 9 +++++++-- 1 file 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) {