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 { .noBackdrop {
height: 220px; height: 220px;
padding: 3em 0 0;
} }
.noBackdrop .itemBackdropContent { .noBackdrop .itemBackdropContent {
@ -769,10 +770,18 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
display: none; display: none;
} }
.noBackdrop .detailImageContainer { .noBackdrop {
display: block; height: auto;
}
.noBackdrop .detailImageContainer {
display: block;
position: static;
text-align: center;
}
.noBackdrop .itemBackdropContent {
position: static; position: static;
text-align: center;
} }
} }
@ -797,6 +806,10 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
overflow: hidden; overflow: hidden;
} }
.mediaInfoContent {
line-height: 1.5em;
}
.mediaInfoStream { .mediaInfoStream {
margin: 1em 3em 1em 0; margin: 1em 3em 1em 0;
display: inline-block; display: inline-block;
@ -807,6 +820,8 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
.mediaInfoStreamType { .mediaInfoStreamType {
display: block; display: block;
color: #fff; color: #fff;
margin-bottom: 1em;
font-size: 16px;
} }
.mediaInfoAttribute { .mediaInfoAttribute {

View file

@ -141,7 +141,7 @@
<a href="http://mediabrowser.tv" target="_blank">Media Browser</a> <a href="http://mediabrowser.tv" target="_blank">Media Browser</a>
<a href="http://mediabrowser.tv/community" target="_blank">${LinkCommunity}</a> <a href="http://mediabrowser.tv/community" target="_blank">${LinkCommunity}</a>
<a href="https://github.com/MediaBrowser" target="_blank">${LinkGithub}</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> </div>
</div> </div>

View file

@ -277,7 +277,7 @@
<div class="splitVersionContainer" style="border-bottom: 1px solid #444;"> <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> <button type="button" class="btnSplitVersions" data-mini="true" data-inline="true" data-icon="delete" title="${ButtonSplitVersionsApart}">${ButtonSplitVersionsApart}</button>
</div> </div>
<div id="mediaInfoContent"></div> <div id="mediaInfoContent" class="mediaInfoContent"></div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -22,7 +22,7 @@
</div> </div>
<div data-role="popup" id="popupAddTrigger" class="popup" style="min-width: 300px;"> <div data-role="popup" id="popupAddTrigger" class="popup" style="min-width: 300px;">
<form class="addTriggerForm"> <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> <h3>${HeaderAddScheduledTaskTrigger}</h3>
</div> </div>
<div data-role="content"> <div data-role="content">

View file

@ -38,6 +38,8 @@
DashboardPage.sessionUpdateTimer = setInterval(DashboardPage.refreshSessionsLocally, 60000); DashboardPage.sessionUpdateTimer = setInterval(DashboardPage.refreshSessionsLocally, 60000);
$('.activityItems', page).activityLogList(); $('.activityItems', page).activityLogList();
$('.swaggerLink', page).attr('href', ApiClient.getUrl('swagger-ui/index.html'));
}, },
onPageHide: function () { onPageHide: function () {

View file

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

View file

@ -2799,17 +2799,13 @@
*/ */
self.getItems = function (userId, options) { self.getItems = function (userId, options) {
if (!userId) {
throw new Error("null userId");
}
var url; var url;
if ((typeof userId).toString().toLowerCase() == 'string') { if ((typeof userId).toString().toLowerCase() == 'string') {
url = self.getUrl("Users/" + userId + "/Items", options); url = self.getUrl("Users/" + userId + "/Items", options);
} else { } else {
options = userId;
url = self.getUrl("Items", options || {}); url = self.getUrl("Items", options);
} }
return self.ajax({ return self.ajax({