1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Backbone/Mixins/AutoComplete.js
2013-03-15 17:33:04 -07:00

20 lines
556 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
});
};
});