Skip to content

Commit

Permalink
forgot event callback in options
Browse files Browse the repository at this point in the history
  • Loading branch information
aehlke committed Nov 29, 2012
1 parent 8e0fd13 commit 470b3f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions js/tag-it.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -28,18 +28,17 @@


$.widget('ui.tagit', { $.widget('ui.tagit', {
options: { options: {
fieldName : 'tags',

// Used for autocomplete, unless you override `autocomplete.source`.
availableTags : [],

allowDuplicates : false, allowDuplicates : false,
caseSensitive : true, caseSensitive : true,
fieldName : 'tags',
placeholderText : null, // Sets `placeholder` attr on input field. placeholderText : null, // Sets `placeholder` attr on input field.
readOnly : false, // Disables editing. readOnly : false, // Disables editing.
removeConfirmation: false, // Require confirmation to remove tags. removeConfirmation: false, // Require confirmation to remove tags.
tagLimit : null, // Max number of tags allowed (null for unlimited). tagLimit : null, // Max number of tags allowed (null for unlimited).


// Used for autocomplete, unless you override `autocomplete.source`.
availableTags : [],

// Use to override or add any options to the autocomplete widget. // Use to override or add any options to the autocomplete widget.
// //
// By default, autocomplete.source will map to availableTags, // By default, autocomplete.source will map to availableTags,
Expand Down Expand Up @@ -93,6 +92,7 @@
afterTagRemoved : null, afterTagRemoved : null,


onTagClicked : null, onTagClicked : null,
onTagLimitExceeded : null,




// DEPRECATED: // DEPRECATED:
Expand Down
2 changes: 1 addition & 1 deletion js/tag-it.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 470b3f9

Please sign in to comment.