streams/view/js/mod_network.js

10 lines
158 B
JavaScript
Raw Normal View History

2013-08-15 12:09:19 +00:00
$(document).ready(function() {
var a;
a = $("#search-text").autocomplete({
serviceUrl: baseurl + '/search_ac',
minChars: 2,
2013-10-02 03:53:25 +00:00
width: 250,
2013-08-15 12:09:19 +00:00
});
});