forked from 0x2620/pandora
minor changes
This commit is contained in:
parent
9d09e54c20
commit
79f7da4c32
2 changed files with 7 additions and 2 deletions
|
@ -18,6 +18,8 @@ pandora.ui.findElement = function() {
|
|||
})
|
||||
.bindEvent({
|
||||
change: function(data) {
|
||||
Ox.print(data);
|
||||
//pandora.$ui.mainMenu.checkItem('findMenu_find_' + ...);
|
||||
pandora.$ui.findInput.options({
|
||||
autocomplete: autocompleteFunction()
|
||||
}).focusInput(true);
|
||||
|
|
|
@ -66,8 +66,11 @@ pandora.ui.tv = function() {
|
|||
list || 'All ' + pandora.site.itemName.plural
|
||||
) + ' — '
|
||||
+ result.data.title
|
||||
+ ' (' + result.data.director.join(', ') + ') '
|
||||
+ result.data.year,
|
||||
+ (
|
||||
result.data.director
|
||||
? ' (' + result.data.director.join(', ') + ') '
|
||||
: ''
|
||||
) + result.data.year,
|
||||
video: videoOptions.video,
|
||||
volume: pandora.user.ui.videoVolume
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue