Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
chore(build): Updated build files
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenford committed Nov 28, 2013
1 parent 00b8e71 commit d62909f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/ng-tags-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ angular.module('tags-input').directive('autoComplete', ["$document", function($d
return;
}

loadFn(text).then(function(items) {
loadFn({ $text: text }).then(function(items) {
self.items = items;
if (items.length > 0) {
self.show();
Expand Down Expand Up @@ -325,7 +325,7 @@ angular.module('tags-input').directive('autoComplete', ["$document", function($d
'</div>',
link: function(scope, element, attrs, tagsInputCtrl) {
var hotkeys = [KEYS.enter, KEYS.tab, KEYS.escape, KEYS.up, KEYS.down],
suggestionList = new SuggestionList(scope.source()),
suggestionList = new SuggestionList(scope.source),

tagsInput = tagsInputCtrl.registerAutocomplete(),
input = tagsInput.input;
Expand Down
Binary file modified build/ng-tags-input.min.zip
Binary file not shown.
Binary file modified build/ng-tags-input.zip
Binary file not shown.

0 comments on commit d62909f

Please sign in to comment.