geoyws
geoyws

Reputation: 3687

Angular.js md-autocomplete does not work

Does anyone else know why?

<md-autocomplete md-selected-item="selectedItem" md-search-text="searchText" md-items="item in getMatches(searchText)" md-item-text="display" placeholder="Search...">
    <span md-highlight-text="searchText">{{item.display}}</span>
</md-autocomplete>

Nothing shows up.

Upvotes: 2

Views: 1585

Answers (1)

Harry Haller
Harry Haller

Reputation: 46

It's necessary to do: bower install angular-material#master

Not available with: bower install angular-material

Upvotes: 3

Related Questions