You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mmm, so i will need to have a separate js file in my project now instead of something that was embeded in bootstrap.. ok, no worries, shall make a plan :)
Would it be possible to include a wild card into the typeahead so putting an asterix displays all options
line 2067 of bootstrap.js (with all options)
, matcher: function (item) {
if (this.query == '*') return ~0;
return ~item.toLowerCase().indexOf(this.query.toLowerCase())
}
The text was updated successfully, but these errors were encountered: