mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fix quirks on details
This commit is contained in:
parent
968431b3ab
commit
2846174b86
@ -32,7 +32,7 @@
|
||||
var hasId = false;
|
||||
|
||||
var txtLookupId = page.querySelectorAll('.txtLookupId');
|
||||
for (i = 0, length = identifyField.length; i < length; i++) {
|
||||
for (i = 0, length = txtLookupId.length; i < length; i++) {
|
||||
|
||||
var value = txtLookupId[i].value;
|
||||
|
||||
|
@ -145,7 +145,7 @@
|
||||
<div id="scenesCollapsible" class="detailSection hide">
|
||||
<h1>
|
||||
${HeaderScenes}
|
||||
<a class="detailSectionHeaderButton chapterSettingsButton clearLink hide" style="margin-top: -8px; display: inline-block;" href="metadataadvanced.html" title="${ButtonSettings}">
|
||||
<a class="detailSectionHeaderButton chapterSettingsButton clearLink hide" style="margin-top: -8px; display: inline-block;" href="librarysettings.html" title="${ButtonSettings}">
|
||||
<button is="paper-icon-button-light" class="autoSize"><i class="md-icon">settings</i></button>
|
||||
</a>
|
||||
</h1>
|
||||
|
@ -468,7 +468,7 @@
|
||||
});
|
||||
}
|
||||
var itemGenres = page.querySelectorAll('.itemGenres');
|
||||
for (i = 0, length = itemMiscInfo.length; i < length; i++) {
|
||||
for (i = 0, length = itemGenres.length; i < length; i++) {
|
||||
LibraryBrowser.renderGenres(itemGenres[i], item, null, isStatic);
|
||||
}
|
||||
|
||||
@ -712,6 +712,10 @@
|
||||
|
||||
var similarCollapsible = page.querySelector('#similarCollapsible');
|
||||
|
||||
if (!similarCollapsible) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (item.Type == "Movie" || item.Type == "Trailer" || item.Type == "Series" || item.Type == "Program" || item.Type == "Recording" || item.Type == "Game" || item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "ChannelVideoItem") {
|
||||
similarCollapsible.classList.remove('hide');
|
||||
}
|
||||
@ -2111,7 +2115,9 @@
|
||||
|
||||
Dashboard.getCurrentUser().then(function (user) {
|
||||
|
||||
LibraryBrowser.showMoreCommands(button, currentItem.Id, currentItem.Type, LibraryBrowser.getMoreCommands(currentItem, user));
|
||||
LibraryBrowser.showMoreCommands(button, currentItem.Id, currentItem.Type, LibraryBrowser.getMoreCommands(currentItem, user)).then(function() {
|
||||
reload(view, params);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -889,6 +889,8 @@
|
||||
});
|
||||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
var serverId = ApiClient.serverInfo().Id;
|
||||
|
||||
require(['actionsheet'], function (actionsheet) {
|
||||
@ -960,7 +962,7 @@
|
||||
LibraryBrowser.editImages(itemId);
|
||||
break;
|
||||
case 'identify':
|
||||
LibraryBrowser.identifyItem(itemId);
|
||||
LibraryBrowser.identifyItem(itemId).then(resolve, reject);
|
||||
break;
|
||||
case 'refresh':
|
||||
require(['refreshDialog'], function (refreshDialog) {
|
||||
@ -977,6 +979,7 @@
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
identifyItem: function (itemId) {
|
||||
|
@ -767,7 +767,7 @@
|
||||
|
||||
if (mainDrawerButton) {
|
||||
if (!visible && browserInfo.mobile) {
|
||||
mainDrawerButton.classList.add('hide');
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
} else {
|
||||
mainDrawerButton.classList.remove('hide');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user