add (non-functional) 'Show Reflections' main menu item
This commit is contained in:
parent
e3e6235fb3
commit
47322639c4
1 changed files with 7 additions and 4 deletions
|
@ -64,11 +64,14 @@ pandora.ui.mainMenu = function() {
|
|||
{ id: 'icons', title: 'Icons', items: [].concat([
|
||||
{ group: 'viewicons', min: 1, max: 1, items: ['posters', 'frames'].map(function(icons) {
|
||||
return {id: icons, title: Ox.toTitleCase(icons), checked: ui.icons == icons};
|
||||
}) }
|
||||
], pandora.site.media.importPosters ? [
|
||||
}) },
|
||||
{},
|
||||
{ id: 'showsiteposters', title: 'Always Show ' + pandora.site.site.name + ' Poster', checked: ui.showSitePosters }
|
||||
] : []
|
||||
], pandora.site.media.importPosters ? [
|
||||
{ id: 'showsiteposters', title: 'Always Show ' + pandora.site.site.name + ' Poster', checked: ui.showSitePosters },
|
||||
{}
|
||||
] : [], [
|
||||
{ id: 'showreflections', title: 'Show Reflections', checked: true, disabled: true }
|
||||
]
|
||||
) },
|
||||
{ id: 'timelines', title: 'Timelines', items: [
|
||||
{ group: 'viewtimelines', min: 1, max: 1, items: pandora.site.timelines.map(function(mode) {
|
||||
|
|
Loading…
Reference in a new issue