I'm trying to limit the amount of results Angular Bootstrap Typeahead returns when doing Async calls but it's not working at all.
<input type="text" ng-model="asyncSelected"
placeholder="Locations loaded via $http" typeahead="address for address in getLocation($viewValue) | limitTo:3"
typeahead-loading="loadingLocations" class="form-control">
I added limitTo:3
to test it out in the Plunker example but it doesn't work, is there a way to do this or is this a bug in Typeahead?