Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
1f044810
Commit
1f044810
authored
13 years ago
by
Pete Hopkins
Browse files
Options
Download
Email Patches
Plain Diff
Switches from Array#filter to jQuery.grep for IE<=8 support
parent
78652a70
6 merge requests
!1475
2.0 wip
,
!1403
warningText and warningBackground docs fix
,
!1351
2.0 wip - relative font sizes
,
!1315
[2.0-wip] Fix mustache glob when building
,
!1269
[2.0-wip] Fix typehead plugin for IE7/8
,
!1268
[wip-2.0] IE 7/8 Typehead JS fix
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/bootstrap-typeahead.js
+2
-2
js/bootstrap-typeahead.js
with
2 additions
and
2 deletions
+2
-2
js/bootstrap-typeahead.js
+
2
-
2
View file @
1f044810
...
...
@@ -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
})
...
...
@@ -249,4 +249,4 @@
})
})
}(
window
.
jQuery
)
\ No newline at end of file
}(
window
.
jQuery
)
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets