mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
21 lines
556 B
JavaScript
21 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
|
|
});
|
|
};
|
|
|
|
});
|