I'm using an Angular Typeahead and need to have a footer to the returned results that links to a full advanced search. I know I can do it using jquery, but I'd like to keep this fully Angular.
<input type="text" ng-model="spotlightModel" autofocus="autofocus" placeholder="Search" typeahead="searchResult.Description as searchResult for searchResult in getResults($viewValue)"
ypeahead-wait-ms="750" typeahead-template-url="app/views/common/directives/SpotlightSearchResult.html"
typeahead-on-select="onSelect($item)" class="form-control typeahead-input">
Any suggestions?