Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
<script>
|
|
$(document).ready(function() {
|
|
$('.settings-content-block').hide();
|
|
$('.settings-heading').click(function(){
|
|
$('.settings-content-block').hide();
|
|
$(this).next('.settings-content-block').toggle();
|
|
});
|
|
});
|
|
</script>
|