You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
527 B
21 lines
527 B
define([], function () {
|
|
|
|
$.fn.folderAutoComplete = function () {
|
|
$(this).typeahead({
|
|
source: function (query, process) {
|
|
$.ajax({
|
|
url: '/api/directories',
|
|
dataType: "json",
|
|
type: "POST",
|
|
data: { query: query },
|
|
success: function (data) {
|
|
process(data);
|
|
}
|
|
});
|
|
},
|
|
minLength: 3
|
|
});
|
|
};
|
|
|
|
});
|