Added kewords to search option.
This commit is contained in:
parent
f5295d319f
commit
16812c16af
2 changed files with 3 additions and 2 deletions
|
@ -170,7 +170,8 @@
|
||||||
|
|
||||||
return val === "" ||
|
return val === "" ||
|
||||||
e.val.toLowerCase().indexOf(val.toLowerCase()) >= 0 ||
|
e.val.toLowerCase().indexOf(val.toLowerCase()) >= 0 ||
|
||||||
(e.meta || "").toLowerCase().indexOf(val.toLowerCase()) >= 0;
|
(e.keywords || "").toLowerCase().indexOf(val.toLowerCase()) >= 0;
|
||||||
|
// (e.meta || "").toLowerCase().indexOf(val.toLowerCase()) >= 0;
|
||||||
}, this));
|
}, this));
|
||||||
|
|
||||||
if(vals.length) {
|
if(vals.length) {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-height: 100px;
|
max-height: 180px;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue