1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Mixins/AutoComplete.js

24 lines
611 B
JavaScript
Raw Normal View History

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