Lidarr/UI/Mixins/AutoComplete.js

24 lines
597 B
JavaScript
Raw Normal View History

'use strict';
define(function () {
2013-02-15 23:38:53 +00:00
$.fn.autoComplete = function (resource) {
$(this).typeahead({
source : function (filter, callback) {
$.ajax({
url : window.ApiRoot + resource,
2013-06-22 06:24:24 +00:00
dataType: 'json',
type : 'GET',
data : { query: filter },
success : function (data) {
2013-02-15 23:38:53 +00:00
callback(data);
}
});
},
minLength: 3,
items : 20
});
};
});