Sonarr/UI/Mixins/AutoComplete.js

23 lines
588 B
JavaScript
Raw Normal View History

"use strict";
define(['app'], function () {
2013-02-15 23:38:53 +00:00
$.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) {
2013-02-15 23:38:53 +00:00
callback(data);
}
});
},
minLength: 3
});
};
});