summaryrefslogblamecommitdiffstats
path: root/application/modules/user/views/scripts/role/linkright.phtml
blob: f7c1133b05c1940472030078d9b398b5efad3608 (plain) (tree)
1
2
3
4
5
                  
                                    


                                         











                                                              
<h1>Add Right</h1>
<div>Click to expand the boxes</div>
<?php
$this->linkForm->setAction($this->url());
echo $this->linkForm;
?>
<script>
$(document).ready(function(){
	$('fieldset').children('dl:gt(0)').hide();
	$('fieldset fieldset>legend').css('cursor','pointer');
	$('fieldset fieldset').click(
	function(){
		$(this).children('dl').slideToggle();
	});

});
</script>