Fix bug in TypeaheadOptions; update TooltipOptions and PopoverOptions

This commit is contained in:
Anthony Chu
2013-08-06 16:10:16 -07:00
parent d1f801dd39
commit 18d1673018
2 changed files with 13 additions and 5 deletions
+6 -1
View File
@@ -35,6 +35,11 @@ $('#myCollapsible').collapse({ toggle: false });
$('.carousel').carousel();
$('.carousel').carousel({ interval: 2000 });
$('.typeahead').typeahead();
$('.typeahead').typeahead({
matcher: item => true,
sorter: (items: any[]) => items,
updater: item => item,
highlighter: item => ""
});
$('#navbar').affix();