diff --git a/build/ng-tags-input.js b/build/ng-tags-input.js index 898576c2..82ae35b3 100644 --- a/build/ng-tags-input.js +++ b/build/ng-tags-input.js @@ -22,7 +22,7 @@ var tagsInput = angular.module('tags-input', []); * ngTagsInput is an Angular directive that renders an input box with tag editing support. * * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} ngClass CSS class to style the control. + * @param {string=} customClass CSS class to style the control. * @param {number=} tabindex Tab order of the control. * @param {string=} [placeholder=Add a tag] Placeholder text for the control. * @param {number=} [minLength=3] Minimum length for a new tag. @@ -256,9 +256,10 @@ tagsInput.directive('tagsInput', ["$timeout","$document","configuration", functi * Provides autocomplete support for the tagsInput directive. * * @param {expression} source Expression to evaluate upon changing the input content. The input value is available as - * $query. The result of the expression must be a promise that resolves to an array of strings. - * @param {number=} [debounceDelay=100] Amount of time, in milliseconds, to wait after the last keystroke before - * evaluating the expression in the source option. + * $query. The result of the expression must be a promise that eventually resolves to an + * array of strings. + * @param {number=} [debounceDelay=100] Amount of time, in milliseconds, to wait before evaluating the expression in + * the source option after the last keystroke. * @param {number=} [minLength=3] Minimum number of characters that must be entered before evaluating the expression * in the source option. * @param {boolean=} [highlightMatchedText=true] Flag indicating that the matched text will be highlighted in the diff --git a/build/ng-tags-input.min.zip b/build/ng-tags-input.min.zip index 9d5ab15f..f75751a2 100644 Binary files a/build/ng-tags-input.min.zip and b/build/ng-tags-input.min.zip differ diff --git a/build/ng-tags-input.zip b/build/ng-tags-input.zip index 22ceb9f2..cece1f96 100644 Binary files a/build/ng-tags-input.zip and b/build/ng-tags-input.zip differ diff --git a/src/auto-complete.js b/src/auto-complete.js index b0ee545f..ebdd0cb7 100644 --- a/src/auto-complete.js +++ b/src/auto-complete.js @@ -8,9 +8,10 @@ * Provides autocomplete support for the tagsInput directive. * * @param {expression} source Expression to evaluate upon changing the input content. The input value is available as - * $query. The result of the expression must be a promise that resolves to an array of strings. - * @param {number=} [debounceDelay=100] Amount of time, in milliseconds, to wait after the last keystroke before - * evaluating the expression in the source option. + * $query. The result of the expression must be a promise that eventually resolves to an + * array of strings. + * @param {number=} [debounceDelay=100] Amount of time, in milliseconds, to wait before evaluating the expression in + * the source option after the last keystroke. * @param {number=} [minLength=3] Minimum number of characters that must be entered before evaluating the expression * in the source option. * @param {boolean=} [highlightMatchedText=true] Flag indicating that the matched text will be highlighted in the diff --git a/src/tags-input.js b/src/tags-input.js index b6009cb2..6fa8987c 100644 --- a/src/tags-input.js +++ b/src/tags-input.js @@ -10,7 +10,7 @@ var tagsInput = angular.module('tags-input', []); * ngTagsInput is an Angular directive that renders an input box with tag editing support. * * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} ngClass CSS class to style the control. + * @param {string=} customClass CSS class to style the control. * @param {number=} tabindex Tab order of the control. * @param {string=} [placeholder=Add a tag] Placeholder text for the control. * @param {number=} [minLength=3] Minimum length for a new tag.