1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-23 02:05:27 +02:00
Sonarr/src/UI/Mixins/AutoComplete.js

23 lines
614 B
JavaScript
Raw Normal View History

2013-10-09 04:43:41 +03:00
'use strict';
2013-11-11 07:09:11 +03:00
define(['jquery'],function ($) {
2013-02-16 02:38:53 +03:00
$.fn.autoComplete = function (resource) {
$(this).typeahead({
source : function (filter, callback) {
$.ajax({
2013-09-14 10:10:19 +03:00
url : window.NzbDrone.ApiRoot + resource,
2013-06-22 09:24:24 +03:00
dataType: 'json',
type : 'GET',
data : { query: filter },
success : function (data) {
2013-02-16 02:38:53 +03:00
callback(data);
}
});
},
minLength: 3,
items : 20
});
};
});