1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 01:37:07 +00:00
Sonarr/UI/Mixins/AutoComplete.js
2013-03-29 16:28:58 -07:00

20 lines
573 B
JavaScript

define(['app'], function () {
$.fn.autoComplete = function (resource) {
$(this).typeahead({
source : function (filter, callback) {
$.ajax({
url : NzbDrone.Constants.ApiRoot + resource,
dataType: "json",
type : "GET",
data : { query: filter },
success : function (data) {
callback(data);
}
});
},
minLength: 3
});
};
});