Skip to content
This repository was archived by the owner on Sep 10, 2023. It is now read-only.

Commit 69fad9d

Browse files
committed
Merge pull request #233 from mcouillard/master
Small change to improve dynamic URL function ability
2 parents c40c001 + fa2b250 commit 69fad9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jquery.tokeninput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ $.TokenList = function (input, url_or_data, settings) {
862862
function computeURL() {
863863
var url = settings.url;
864864
if(typeof settings.url == 'function') {
865-
url = settings.url.call();
865+
url = settings.url.call(settings);
866866
}
867867
return url;
868868
}

0 commit comments

Comments
 (0)