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

#18 - Duplicate Logos When Installing Server

This commit is contained in:
LukePulverenti 2013-03-12 15:37:22 -04:00
parent bd29967e42
commit 0d441108d1

View file

@ -54,9 +54,13 @@ var Dashboard = {
Dashboard.getCurrentUser();
}
// Re-render the header
$('.header').remove();
Dashboard.ensureHeader($.mobile.activePage);
var header = $('.header', $.mobile.activePage);
if (header.length) {
// Re-render the header
header.remove();
Dashboard.ensureHeader($.mobile.activePage);
}
},
getCurrentUserId: function () {