Commit 16c07fb94059727dd55df0b8484b1903a4b2b6b7
1 parent
e6aac9ae
Exists in
master
and in
29 other branches
Fix tokeninput's variable name
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
public/javascripts/jquery.tokeninput.js
... | ... | @@ -110,7 +110,7 @@ $.fn.tokenInput = function (method) { |
110 | 110 | }; |
111 | 111 | |
112 | 112 | // TokenList class for each input |
113 | -$.TokenList = function (input, url_or_data, settings) { | |
113 | +$.TokenList = function (input, url_or_data, options) { | |
114 | 114 | // |
115 | 115 | // Initialization |
116 | 116 | // | ... | ... |