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

update progressive encoding

This commit is contained in:
Luke Pulverenti 2016-02-07 16:48:08 -05:00
parent 1121dd8ae4
commit 9915242409
9 changed files with 45 additions and 39 deletions

View file

@ -1,11 +1,11 @@
(function () {
$(document).on('pageshow', "#logPage", function () {
$(document).on('pagebeforeshow', "#logPage", function () {
var page = this;
Dashboard.showLoadingMsg();
require(['paper-fab', 'paper-progress', 'paper-item-body', 'paper-icon-item'], function () {
require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () {
var apiClient = ApiClient;
@ -56,6 +56,7 @@
html += '</div>';
$('.serverLogs', page).html(html).trigger('create');
Dashboard.hideLoadingMsg();
});
});