mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fix block by inherited tags
This commit is contained in:
parent
2300b96924
commit
8a5107f748
@ -1,4 +1,4 @@
|
||||
<div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage" data-require="emby-collapsible,scripts/librarysettings,paper-input,paper-checkbox">
|
||||
<div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage withTabs" data-require="emby-collapsible,scripts/librarysettings,paper-input,paper-checkbox">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
@ -121,9 +121,14 @@
|
||||
{
|
||||
href: 'librarypathmapping.html',
|
||||
name: Globalize.translate('TabPathSubstitution')
|
||||
},
|
||||
{
|
||||
href: 'librarysettings.html',
|
||||
name: Globalize.translate('TabAdvanced')
|
||||
}];
|
||||
}
|
||||
|
||||
|
||||
$(document).on('pageinit', "#libraryPathMappingPage", function () {
|
||||
|
||||
var page = this;
|
||||
|
@ -164,8 +164,25 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
function getTabs() {
|
||||
return [
|
||||
{
|
||||
href: 'library.html',
|
||||
name: Globalize.translate('TabFolders')
|
||||
},
|
||||
{
|
||||
href: 'librarypathmapping.html',
|
||||
name: Globalize.translate('TabPathSubstitution')
|
||||
},
|
||||
{
|
||||
href: 'librarysettings.html',
|
||||
name: Globalize.translate('TabAdvanced')
|
||||
}];
|
||||
}
|
||||
|
||||
$(document).on('pageshow', "#librarySettingsPage", function () {
|
||||
|
||||
LibraryMenu.setTabs('librarysetup', 2, getTabs);
|
||||
Dashboard.showLoadingMsg();
|
||||
|
||||
var page = this;
|
||||
|
@ -222,7 +222,7 @@
|
||||
}
|
||||
|
||||
function editImages(page, virtualFolder) {
|
||||
|
||||
|
||||
require(['components/imageeditor/imageeditor'], function (ImageEditor) {
|
||||
|
||||
ImageEditor.show(virtualFolder.ItemId, {
|
||||
@ -462,6 +462,10 @@
|
||||
{
|
||||
href: 'librarypathmapping.html',
|
||||
name: Globalize.translate('TabPathSubstitution')
|
||||
},
|
||||
{
|
||||
href: 'librarysettings.html',
|
||||
name: Globalize.translate('TabAdvanced')
|
||||
}];
|
||||
}
|
||||
|
||||
|
@ -757,11 +757,6 @@ var Dashboard = {
|
||||
href: "metadatasubtitles.html",
|
||||
pageIds: ['metadataSubtitlesPage'],
|
||||
icon: 'closed-caption'
|
||||
}, {
|
||||
name: Globalize.translate('TabAdvanced'),
|
||||
href: "librarysettings.html",
|
||||
pageIds: ['librarySettingsPage'],
|
||||
icon: 'settings'
|
||||
}, {
|
||||
name: Globalize.translate('TabPlayback'),
|
||||
icon: 'play-circle-filled',
|
||||
|
Loading…
Reference in New Issue
Block a user