11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* for server_synchronize.php
|
|
*
|
|
*/
|
|
$(document).ready(function() {
|
|
$('.server_selector').change(function() {
|
|
$(this).parent().parent().parent().children('.toggler').toggle();
|
|
});
|
|
});
|