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

Commit

Permalink
chore(doc): Fixed documentation issues [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenford committed Dec 7, 2013
1 parent 1480514 commit 3f8674e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions build/ng-tags-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
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.
7 changes: 4 additions & 3 deletions src/auto-complete.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tags-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3f8674e

Please sign in to comment.