mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
lowercase image references
This commit is contained in:
parent
9bf35c15b0
commit
7eb5b657ef
4 changed files with 11 additions and 11 deletions
|
@ -16,7 +16,7 @@
|
|||
Version <span id="appVersionNumber"></span>
|
||||
</p>
|
||||
<p id="pUpToDate" style="display: none;">
|
||||
<img src="css/images/checkMarkGreen.png" style="height: 20px; margin-right: 3px; position: relative; top: 4px;" />
|
||||
<img src="css/images/checkmarkgreen.png" style="height: 20px; margin-right: 3px; position: relative; top: 4px;" />
|
||||
Media Browser Server is up to date
|
||||
</p>
|
||||
<div id="pUpdateNow" style="display: none;">
|
||||
|
|
|
@ -7,24 +7,24 @@
|
|||
<div id="indexPage" data-role="page" class="page type-home libraryPage" data-theme="a">
|
||||
<div data-role="content">
|
||||
<h1>What's New <a href="#" class="imageLink">
|
||||
<img src="css/images/rightArrow.png" /></a></h1>
|
||||
<img src="css/images/rightarrow.png" /></a></h1>
|
||||
|
||||
<div id="divWhatsNew"></div>
|
||||
|
||||
<div id="divResumable" style="display: none;">
|
||||
<h1>Resume <a href="#" class="imageLink">
|
||||
<img src="css/images/rightArrow.png" /></a></h1>
|
||||
<img src="css/images/rightarrow.png" /></a></h1>
|
||||
|
||||
<div id="divResumableItems"></div>
|
||||
</div>
|
||||
|
||||
<h1>My Library <a href="#" class="imageLink">
|
||||
<img src="css/images/rightArrow.png" /></a></h1>
|
||||
<img src="css/images/rightarrow.png" /></a></h1>
|
||||
|
||||
<div id="divMyLibrary"></div>
|
||||
|
||||
<h1>Collections <a href="#" class="imageLink">
|
||||
<img src="css/images/rightArrow.png" /></a></h1>
|
||||
<img src="css/images/rightarrow.png" /></a></h1>
|
||||
|
||||
<div id="divCollections"></div>
|
||||
</div>
|
||||
|
|
|
@ -534,7 +534,7 @@ var Dashboard = {
|
|||
tag: user.PrimaryImageTag,
|
||||
type: "Primary"
|
||||
|
||||
}) : "css/images/userFlyoutDefault.png";
|
||||
}) : "css/images/userflyoutdefault.png";
|
||||
|
||||
html += '<img style="max-height:125px;max-width:200px;" src="' + imageUrl + '" />';
|
||||
html += '</p>';
|
||||
|
@ -755,7 +755,7 @@ var Dashboard = {
|
|||
}
|
||||
headerHtml += '</a>';
|
||||
|
||||
var imageColor = isLibraryPage ? "White" : "Black";
|
||||
var imageColor = isLibraryPage ? "white" : "black";
|
||||
|
||||
if (user && !page.hasClass('wizardPage')) {
|
||||
headerHtml += '<div class="headerButtons">';
|
||||
|
@ -771,7 +771,7 @@ var Dashboard = {
|
|||
|
||||
headerHtml += '<img src="' + url + '" />';
|
||||
} else {
|
||||
headerHtml += '<img src="css/images/currentUserDefault' + imageColor + '.png" />';
|
||||
headerHtml += '<img src="css/images/currentuserdefault' + imageColor + '.png" />';
|
||||
}
|
||||
headerHtml += '</a>';
|
||||
|
||||
|
@ -1155,11 +1155,11 @@ $(function () {
|
|||
|
||||
footerHtml += '<div id="nowPlayingBar" style="display:none;">';
|
||||
|
||||
footerHtml += '<button id="previousTrackButton" class="imageButton mediaButton" title="Previous Track" type="button"><img src="css/images/media/previousTrack.png" /></button>';
|
||||
footerHtml += '<button id="previousTrackButton" class="imageButton mediaButton" title="Previous Track" type="button"><img src="css/images/media/previoustrack.png" /></button>';
|
||||
|
||||
footerHtml += '<button id="stopButton" class="imageButton mediaButton" title="Stop" type="button" onclick="MediaPlayer.stop();"><img src="css/images/media/stop.png" /></button>';
|
||||
|
||||
footerHtml += '<button id="nextTrackButton" class="imageButton mediaButton" title="Next Track" type="button"><img src="css/images/media/nextTrack.png" /></button>';
|
||||
footerHtml += '<button id="nextTrackButton" class="imageButton mediaButton" title="Next Track" type="button"><img src="css/images/media/nexttrack.png" /></button>';
|
||||
|
||||
footerHtml += '<div id="mediaElement"></div>';
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
});
|
||||
html += "<img src='" + url + "' />";
|
||||
} else {
|
||||
html += "<img src='css/images/userFlyoutDefault.png' />";
|
||||
html += "<img src='css/images/userflyoutdefault.png' />";
|
||||
}
|
||||
|
||||
html += "<h3>" + user.Name + "</h3>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue