18f54f4425
- Moved several admin pages to the moderation area - ACL still is checking for administrator credentials
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>
|