1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/UI/Mixins/AutoComplete.js

24 lines
597 B
JavaScript
Raw Normal View History

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