add find-as-you-type to list browsers
This commit is contained in:
parent
4ebdec39cb
commit
5f4eecb8d0
3 changed files with 9 additions and 7 deletions
|
|
@ -55,7 +55,7 @@ pandora.ui.folderBrowserList = function(id) {
|
|||
},
|
||||
{
|
||||
clickable: function(data) {
|
||||
return data.type == 'smart';
|
||||
return data.type == 'smart' || data.user == pandora.user.username;
|
||||
},
|
||||
format: function(value, data) {
|
||||
return $('<img>')
|
||||
|
|
@ -83,7 +83,7 @@ pandora.ui.folderBrowserList = function(id) {
|
|||
tooltip: function(data) {
|
||||
return data.type == 'smart'
|
||||
? (data.user == pandora.user.username ? 'Edit Query' : 'Show Query')
|
||||
: '';
|
||||
: (data.user == pandora.user.username ? 'Edit Default View' : 'Default View: ...');
|
||||
},
|
||||
visible: true,
|
||||
width: 16
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue