max width for find element autocomplete menu
This commit is contained in:
parent
7e779aaa7c
commit
aa36bc339b
2 changed files with 4 additions and 2 deletions
|
@ -60,6 +60,7 @@ pandora.ui.findElement = function() {
|
||||||
autocomplete: autocompleteFunction(),
|
autocomplete: autocompleteFunction(),
|
||||||
autocompleteSelect: true,
|
autocompleteSelect: true,
|
||||||
autocompleteSelectHighlight: true,
|
autocompleteSelectHighlight: true,
|
||||||
|
autocompleteSelectMaxWidth: 256,
|
||||||
autocompleteSelectSubmit: true,
|
autocompleteSelectSubmit: true,
|
||||||
clear: true,
|
clear: true,
|
||||||
id: 'input',
|
id: 'input',
|
||||||
|
|
|
@ -8,8 +8,9 @@ pandora.ui.logsDialog = function() {
|
||||||
$findSelect = Ox.Select({
|
$findSelect = Ox.Select({
|
||||||
items: [
|
items: [
|
||||||
{id: 'all', title: 'Find: All', checked: true},
|
{id: 'all', title: 'Find: All', checked: true},
|
||||||
{id: 'url', title: 'Find: Url'},
|
{id: 'user', title: 'Find: User'},
|
||||||
{id: 'user', title: 'Find: User'}
|
{id: 'url', title: 'Find: URL'},
|
||||||
|
{id: 'text', title: 'Find: Text'}
|
||||||
],
|
],
|
||||||
overlap: 'right',
|
overlap: 'right',
|
||||||
type: 'image'
|
type: 'image'
|
||||||
|
|
Loading…
Reference in a new issue