revert search page title on empty query

This commit is contained in:
siikamiika 2019-12-06 14:56:36 +02:00
parent b418760a52
commit a5a6351cce

View File

@ -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) {