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 Diff line number Diff line change
Expand Up @@ -28,18 +28,17 @@

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

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

allowDuplicates : false,
caseSensitive : true,
fieldName : 'tags',
placeholderText : null, // Sets `placeholder` attr on input field.
readOnly : false, // Disables editing.
removeConfirmation: false, // Require confirmation to remove tags.
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.
//
// By default, autocomplete.source will map to availableTags,
Expand Down Expand Up @@ -93,6 +92,7 @@
afterTagRemoved : null,

onTagClicked : null,
onTagLimitExceeded : null,


// 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.