update list views

This commit is contained in:
Luke Pulverenti 2016-07-16 19:39:10 -04:00
parent 0ce19d6e79
commit b5734e3e93
15 changed files with 277 additions and 158 deletions

View file

@ -64,7 +64,7 @@ define(['apphost', 'globalize', 'connectionManager', 'itemHelper', 'embyRouter',
});
}
if (options.play) {
if (options.play !== false) {
commands.push({
name: globalize.translate('sharedcomponents#Play'),
id: 'resume'
@ -79,7 +79,7 @@ define(['apphost', 'globalize', 'connectionManager', 'itemHelper', 'embyRouter',
}
if (playbackManager.canQueueMediaType(item.MediaType)) {
if (options.queue) {
if (options.queue !== false) {
commands.push({
name: globalize.translate('sharedcomponents#Queue'),
id: 'queue'