Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
<script>
|
|
$(document).ready(function() {
|
|
$('.settings-content-block').hide();
|
|
$('.settings-heading').click(function(){
|
|
$('.settings-content-block').hide();
|
|
$(this).next('.settings-content-block').toggle();
|
|
});
|
|
});
|
|
</script>
|