3.0.5346.38509

This commit is contained in:
Luke Pulverenti 2014-08-21 22:24:38 -04:00
parent 3f09347bf7
commit e66a2c5c14
6 changed files with 39 additions and 25 deletions

View file

@ -43,7 +43,6 @@
function reload(page) {
Dashboard.showLoadingMsg();
$('.btnEdit', page).attr('href', '#');
getPromise().done(function (item) {
@ -53,7 +52,6 @@
if (context) {
editQuery += '&context=' + context;
}
$('.btnEdit', page).attr('href', 'edititemmetadata.html' + editQuery);
currentItem = item;
@ -88,10 +86,10 @@
$('#itemImage', page).html(LibraryBrowser.getDetailImageHtml(item, editImagesHref, true));
if (user.Configuration.IsAdministrator && item.LocationType !== "Offline") {
$('.btnEdit', page).show();
if (LibraryBrowser.getMoreCommands(item, user).length) {
$('.btnMoreCommands', page).show();
} else {
$('.btnEdit', page).hide();
$('.btnMoreCommands', page).show();
}
});
@ -464,9 +462,10 @@
}
else if (query.IncludeItemTypes == "MusicAlbum") {
html = LibraryBrowser.getListViewHtml({
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
smallIcon: true,
shape: "square",
context: 'music',
playFromHere: true
});
@ -524,6 +523,16 @@
});
$('.btnMoreCommands', page).on('click', function () {
var button = this;
Dashboard.getCurrentUser().done(function (user) {
LibraryBrowser.showMoreCommands(button, currentItem.Id, LibraryBrowser.getMoreCommands(currentItem, user));
});
});
}).on('pageshow', "#itemByNameDetailPage", function () {
var page = this;