This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/view/js/mod_sources.js
2013-09-29 18:18:05 -07:00

13 lines
219 B
JavaScript

$(document).ready(function() {
var a;
a = $("#id_name").autocomplete({
serviceUrl: baseurl + '/acl',
minChars: 2,
width: 350,
onSelect: function(value,data) {
$("#id_xchan").val(data);
}
});
});