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_network.js

11 lines
182 B
JavaScript

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