blob: 5440af2a116e2331ecaada58352b30f194346835 (
plain)
1
2
3
4
5
6
7
8
|
/**
* Set up autocomplete on the server path list
*
*/
$("document").ready(function() {
$("#gServerAddAdmin input:text").autocomplete(
base_url.replace("__ARGS__", "admin/server_add/autocomplete"), {max: 256});
});
|