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

now playing bar fixes

This commit is contained in:
Luke Pulverenti 2013-12-28 02:09:05 -05:00
parent 2047f4bd49
commit 84eb8fc047
6 changed files with 19 additions and 25 deletions

View file

@ -10,7 +10,7 @@
function renderHeader(page, user) {
var html = '<div class="viewMenuBar">';
var html = '<div class="viewMenuBar ui-bar-b">';
html += '<button type="button" data-icon="bars" data-iconpos="notext" data-inline="true" title="Menu" class="libraryMenuButton" onclick="LibraryMenu.showLibraryMenu($(this).parents(\'.page\'));">Menu</button>';
@ -221,11 +221,7 @@
var link = links[i];
if (selectedIndex == i) {
html += '<li><a class="selectedLibraryPanelLink libraryPanelLink" href="' + link.href + '">' + link.text + '</a></li>';
} else {
html += '<li><a class="libraryPanelLink" href="' + link.href + '">' + link.text + '</a></li>';
}
html += '<li><a class="libraryPanelLink" href="' + link.href + '">' + link.text + '</a></li>';
}
html += '</ul>';