mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Merge pull request #1269 from phopkins/ie_typeahead
[2.0-wip] Fix typehead plugin for IE7/8
This commit is contained in:
commit
5a48b22b83
1 changed files with 1 additions and 1 deletions
2
js/bootstrap-typeahead.js
vendored
2
js/bootstrap-typeahead.js
vendored
|
@ -79,7 +79,7 @@
|
|||
|
||||
q = this.query.toLowerCase()
|
||||
|
||||
items = this.data.filter(function (item) {
|
||||
items = jQuery.grep(this.data, function (item) {
|
||||
if (that.matcher(item, q)) return item
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue