mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update dlna profiles
This commit is contained in:
parent
94988219d3
commit
0daa91e419
7 changed files with 26 additions and 13 deletions
|
@ -384,6 +384,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
|
||||
.noBackdrop {
|
||||
height: 220px;
|
||||
padding: 3em 0 0;
|
||||
}
|
||||
|
||||
.noBackdrop .itemBackdropContent {
|
||||
|
@ -769,11 +770,19 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.noBackdrop {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.noBackdrop .detailImageContainer {
|
||||
display: block;
|
||||
position: static;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.noBackdrop .itemBackdropContent {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width: 750px) {
|
||||
|
@ -797,6 +806,10 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mediaInfoContent {
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.mediaInfoStream {
|
||||
margin: 1em 3em 1em 0;
|
||||
display: inline-block;
|
||||
|
@ -807,6 +820,8 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
.mediaInfoStreamType {
|
||||
display: block;
|
||||
color: #fff;
|
||||
margin-bottom: 1em;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.mediaInfoAttribute {
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
<a href="http://mediabrowser.tv" target="_blank">Media Browser</a>
|
||||
<a href="http://mediabrowser.tv/community" target="_blank">${LinkCommunity}</a>
|
||||
<a href="https://github.com/MediaBrowser" target="_blank">${LinkGithub}</a>
|
||||
<a href="../swagger-ui/index.html" target="_blank">${LinkApi}</a>
|
||||
<a class="swaggerLink" target="_blank" href="#">${LinkApi}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -277,7 +277,7 @@
|
|||
<div class="splitVersionContainer" style="border-bottom: 1px solid #444;">
|
||||
<button type="button" class="btnSplitVersions" data-mini="true" data-inline="true" data-icon="delete" title="${ButtonSplitVersionsApart}">${ButtonSplitVersionsApart}</button>
|
||||
</div>
|
||||
<div id="mediaInfoContent"></div>
|
||||
<div id="mediaInfoContent" class="mediaInfoContent"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
<div data-role="popup" id="popupAddTrigger" class="popup" style="min-width: 300px;">
|
||||
<form class="addTriggerForm">
|
||||
<div class="ui-bar-b" style="text-align: center; padding: 0 20px;">
|
||||
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
||||
<h3>${HeaderAddScheduledTaskTrigger}</h3>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
|
|
|
@ -38,6 +38,8 @@
|
|||
DashboardPage.sessionUpdateTimer = setInterval(DashboardPage.refreshSessionsLocally, 60000);
|
||||
|
||||
$('.activityItems', page).activityLogList();
|
||||
|
||||
$('.swaggerLink', page).attr('href', ApiClient.getUrl('swagger-ui/index.html'));
|
||||
},
|
||||
|
||||
onPageHide: function () {
|
||||
|
|
|
@ -309,7 +309,7 @@
|
|||
|
||||
if (videoStream.IsCabac != null && !videoStream.IsCabac) {
|
||||
console.log('Video not CABAC');
|
||||
return false;
|
||||
//return false;
|
||||
}
|
||||
|
||||
if (!videoStream.Width) {
|
||||
|
|
|
@ -2799,17 +2799,13 @@
|
|||
*/
|
||||
self.getItems = function (userId, options) {
|
||||
|
||||
if (!userId) {
|
||||
throw new Error("null userId");
|
||||
}
|
||||
|
||||
var url;
|
||||
|
||||
if ((typeof userId).toString().toLowerCase() == 'string') {
|
||||
url = self.getUrl("Users/" + userId + "/Items", options);
|
||||
} else {
|
||||
options = userId;
|
||||
url = self.getUrl("Items", options || {});
|
||||
|
||||
url = self.getUrl("Items", options);
|
||||
}
|
||||
|
||||
return self.ajax({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue