1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update games page to honor aspect ratio

This commit is contained in:
Luke Pulverenti 2013-04-28 16:23:37 -04:00
parent fdd009f29c
commit d7cb795c5f
2 changed files with 2 additions and 4 deletions

View file

@ -64,7 +64,7 @@
var currentTimeout = searchHintTimeout;
ApiClient.getSearchHints(ApiClient.getUrl({ userId: Dashboard.getCurrentUserId(), searchTerm: searchTerm, limit: 10 })).done(function (result) {
ApiClient.getSearchHints({ userId: Dashboard.getCurrentUserId(), searchTerm: searchTerm, limit: 10 }).done(function (result) {
if (currentTimeout != searchHintTimeout) {
return;
@ -74,7 +74,6 @@
hideFlyout(page);
return;
}
renderSearchHintResult(page, result.SearchHints);
});
}