2021-05-08 14:09:02 +02:00
|
|
|
(function($) {
|
|
|
|
$(document).ready(function() {
|
2021-05-31 15:50:08 +02:00
|
|
|
$('._expand_site_item').click(function() {
|
|
|
|
$(this).next('tr').toggle();
|
2021-06-01 12:01:07 +02:00
|
|
|
return false;
|
2021-05-08 14:09:02 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery)
|