streams/view/js/mod_sources.js

14 lines
239 B
JavaScript
Raw Normal View History

2013-09-30 01:18:05 +00:00
$(document).ready(function() {
var a;
a = $("#id_name").autocomplete({
serviceUrl: baseurl + '/acl',
minChars: 2,
width: 250,
id: 'id-name-ac',
2013-09-30 01:18:05 +00:00
onSelect: function(value,data) {
$("#id_xchan").val(data);
}
});
});