mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
20 lines
556 B
JavaScript
20 lines
556 B
JavaScript
define(['app'], function () {
|
|
|
|
$.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) {
|
|
callback(data);
|
|
}
|
|
});
|
|
},
|
|
minLength: 3
|
|
});
|
|
};
|
|
|
|
});
|