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

Commit

Permalink
Merge pull request #27 from dangoor/master
Browse files Browse the repository at this point in the history
Replace use of $.ajax().success()
  • Loading branch information
laktek committed May 31, 2013
2 parents 9d0cbea + f40e030 commit 7265ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.smart_autocomplete.js
Expand Up @@ -97,7 +97,7 @@
url: source,
data: {"term": term},
dataType: "json"
}).success( function(data){
}).done( function(data){
dfd.resolve( default_filter_matcher(term, data, context) );
});
}).promise();
Expand Down

0 comments on commit 7265ac4

Please sign in to comment.