mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
live tv stream adjustments, add additional dlna params
This commit is contained in:
parent
9db8c276cc
commit
1bfd7d3cf0
2 changed files with 2 additions and 25 deletions
|
@ -191,7 +191,6 @@
|
||||||
|
|
||||||
.sessionPosterItem .posterItemName {
|
.sessionPosterItem .posterItemName {
|
||||||
color: #fff!important;
|
color: #fff!important;
|
||||||
font-weight: normal !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sessionPosterItem .posterItemDefaultText {
|
.sessionPosterItem .posterItemDefaultText {
|
||||||
|
|
|
@ -192,7 +192,7 @@
|
||||||
}
|
}
|
||||||
html += "<div class='posterItemText posterItemProgress' style='" + progressStyle + "'>";
|
html += "<div class='posterItemText posterItemProgress' style='" + progressStyle + "'>";
|
||||||
|
|
||||||
html += '<progress class="itemProgressBar" min="0" max="100" value="' + DashboardPage.getPlaybackProgress(connection) + '"></progress>';
|
html += '<progress class="itemProgressBar" min="0" max="100" value="' + DashboardPage.getPlaybackProgress(connection) + '" style="opacity:.9;"></progress>';
|
||||||
html += "</div>";
|
html += "</div>";
|
||||||
html += "</div>";
|
html += "</div>";
|
||||||
|
|
||||||
|
@ -420,28 +420,6 @@
|
||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
|
|
||||||
getNowPlayingText: function (connection, item) {
|
|
||||||
|
|
||||||
var html = "";
|
|
||||||
|
|
||||||
if (item) {
|
|
||||||
|
|
||||||
html += "<div><a href='itemdetails.html?id=" + item.Id + "'>" + item.Name + "</a></div>";
|
|
||||||
|
|
||||||
html += "<div>";
|
|
||||||
|
|
||||||
if (item.RunTimeTicks) {
|
|
||||||
html += Dashboard.getDisplayTime(connection.NowPlayingPositionTicks || 0) + " / ";
|
|
||||||
|
|
||||||
html += Dashboard.getDisplayTime(item.RunTimeTicks);
|
|
||||||
}
|
|
||||||
|
|
||||||
html += "</div>";
|
|
||||||
}
|
|
||||||
|
|
||||||
return html;
|
|
||||||
},
|
|
||||||
|
|
||||||
renderRunningTasks: function (dashboardInfo) {
|
renderRunningTasks: function (dashboardInfo) {
|
||||||
|
|
||||||
var page = $.mobile.activePage;
|
var page = $.mobile.activePage;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue