This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/view/js/mod_network.js
2013-10-01 20:53:25 -07:00

10 lines
158 B
JavaScript

$(document).ready(function() {
var a;
a = $("#search-text").autocomplete({
serviceUrl: baseurl + '/search_ac',
minChars: 2,
width: 250,
});
});