Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. .directive('typeahead', [function () {
  2. return {
  3. restrict: 'A',
  4. link: function (scope, elem, attrs, controller) {
  5. elem.typeahead({
  6. name: 'produtos',
  7. local: ['Keynes', 'Mises']
  8. })
  9. elem.on('typeahead:autocompleted typeahead:selected', function (datum) {
  10. elem.val(datum.value)
  11. })
  12. },
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement