Commit 5a48b22b authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #1269 from phopkins/ie_typeahead

[2.0-wip] Fix typehead plugin for IE7/8
parents 7d292f5a 1f044810
Showing with 1 addition and 1 deletion
+1 -1
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
q = this.query.toLowerCase() q = this.query.toLowerCase()
items = this.data.filter(function (item) { items = jQuery.grep(this.data, function (item) {
if (that.matcher(item, q)) return item if (that.matcher(item, q)) return item
}) })
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment