pass autocomplete function to editor view
This commit is contained in:
parent
0f3a0e1eb3
commit
f3c0f8d76a
1 changed files with 9 additions and 0 deletions
|
@ -15,6 +15,15 @@ pandora.ui.editor = function(data) {
|
||||||
annotationsTooltip: Ox._('annotations')
|
annotationsTooltip: Ox._('annotations')
|
||||||
+ ' <span class="OxBright">' + Ox.SYMBOLS.shift + 'A</span>',
|
+ ' <span class="OxBright">' + Ox.SYMBOLS.shift + 'A</span>',
|
||||||
audioTrack: data.audioTrack,
|
audioTrack: data.audioTrack,
|
||||||
|
autocomplete: function(key, value, callback) {
|
||||||
|
pandora.api.autocompleteEntity({
|
||||||
|
key: key,
|
||||||
|
operator: '=',
|
||||||
|
value: value
|
||||||
|
}, function(result) {
|
||||||
|
callback(result.data.items);
|
||||||
|
})
|
||||||
|
},
|
||||||
censored: data.censored,
|
censored: data.censored,
|
||||||
censoredIcon: pandora.site.cantPlay.icon,
|
censoredIcon: pandora.site.cantPlay.icon,
|
||||||
censoredTooltip: Ox._(pandora.site.cantPlay.text),
|
censoredTooltip: Ox._(pandora.site.cantPlay.text),
|
||||||
|
|
Loading…
Reference in a new issue