mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
avoid buffering http responses
This commit is contained in:
parent
86a369b500
commit
170b720d0b
22 changed files with 102 additions and 42 deletions
|
@ -45,9 +45,7 @@
|
|||
}
|
||||
|
||||
function showTextSuggestions() {
|
||||
if (AppInfo.enableAppLayouts) {
|
||||
textSuggestions.classList.remove('hide');
|
||||
}
|
||||
textSuggestions.classList.remove('hide');
|
||||
}
|
||||
|
||||
function getAdditionalTextLines(hint) {
|
||||
|
@ -176,10 +174,8 @@
|
|||
}, 300);
|
||||
}
|
||||
|
||||
if (AppInfo.enableAppLayouts) {
|
||||
showTextSuggestions();
|
||||
loadSuggestions(view);
|
||||
}
|
||||
showTextSuggestions();
|
||||
loadSuggestions(view);
|
||||
|
||||
view.querySelector('.txtSearch').addEventListener('input', function () {
|
||||
onSearchChange(this.value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue