diff --git a/static/js/pandora/menu.js b/static/js/pandora/menu.js index 41113328..fb02a06d 100644 --- a/static/js/pandora/menu.js +++ b/static/js/pandora/menu.js @@ -66,7 +66,7 @@ pandora.ui.mainMenu = function() { }) } ], pandora.site.media.importPosters ? [ {}, - { id: 'showsiteposter', title: 'Always Show ' + pandora.site.site.name + ' Poster', checked: ui.showSitePoster } + { id: 'showsiteposters', title: 'Always Show ' + pandora.site.site.name + ' Poster', checked: ui.showSitePosters } ] : [] ) }, { id: 'timelines', title: 'Timelines', items: [ @@ -214,8 +214,8 @@ pandora.ui.mainMenu = function() { } else if (data.id == 'settheme') { Ox.Theme(value); pandora.UI.set('theme', value); - } else if (data.id == 'showsiteposter') { - pandora.UI.set('showSitePoster', data.checked) + } else if (data.id == 'showsiteposters') { + pandora.UI.set('showSitePosters', data.checked) } else if (Ox.startsWith(data.id, 'sortfilter')) { var filters = Ox.clone(ui.filters), id = data.id.replace('sortfilter', ''), @@ -482,7 +482,7 @@ pandora.ui.mainMenu = function() { function getListMenu(lists) { return { id: 'listMenu', title: 'List', items: Ox.merge( - { id: 'allitems', title: 'All ' + pandora.site.itemName.plural, checked: !ui.item && !ui._list, keyboard: 'shift control w' }, + { id: 'allitems', title: 'All ' + pandora.site.itemName.plural, checked: !ui.item && !ui._list, keyboard: 'shift control w' }, ['personal', 'favorite', 'featured'].map(function(folder) { return { id: folder + 'lists',