mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:02:53 +00:00
9 lines
237 B
Smarty
9 lines
237 B
Smarty
<script>
|
|
$(document).ready(function() {
|
|
$('.settings-content-block').hide();
|
|
$('.settings-heading').click(function(){
|
|
$('.settings-content-block').hide();
|
|
$(this).next('.settings-content-block').toggle();
|
|
});
|
|
});
|
|
</script>
|