1
0
Fork 0
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:
Luke Pulverenti 2015-02-06 22:25:23 -05:00
parent 94988219d3
commit 0daa91e419
7 changed files with 26 additions and 13 deletions

View file

@ -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 {

View file

@ -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>

View file

@ -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>

View file

@ -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">

View file

@ -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 () {

View file

@ -309,7 +309,7 @@
if (videoStream.IsCabac != null && !videoStream.IsCabac) {
console.log('Video not CABAC');
return false;
//return false;
}
if (!videoStream.Width) {

View file

@ -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({