2013-06-24 16:41:59 -07:00
|
|
|
'use strict';
|
2013-04-10 18:24:34 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
define(function () {
|
2013-02-13 18:28:56 -08:00
|
|
|
|
2013-02-15 15:38:53 -08:00
|
|
|
$.fn.autoComplete = function (resource) {
|
2013-02-13 18:28:56 -08:00
|
|
|
$(this).typeahead({
|
2013-03-29 16:28:58 -07:00
|
|
|
source : function (filter, callback) {
|
2013-02-13 18:28:56 -08:00
|
|
|
$.ajax({
|
2013-09-14 00:10:19 -07:00
|
|
|
url : window.NzbDrone.ApiRoot + resource,
|
2013-06-21 23:24:24 -07:00
|
|
|
dataType: 'json',
|
|
|
|
type : 'GET',
|
2013-03-29 16:28:58 -07:00
|
|
|
data : { query: filter },
|
|
|
|
success : function (data) {
|
2013-02-15 15:38:53 -08:00
|
|
|
callback(data);
|
2013-02-13 18:28:56 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2013-05-20 13:30:23 -07:00
|
|
|
minLength: 3,
|
2013-06-24 16:41:59 -07:00
|
|
|
items : 20
|
2013-02-13 18:28:56 -08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
});
|