summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/role/add.phtml
blob: 59c0dae1d8e34db7dc3e5c6777e2c787450800ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<h1>Add Role</h1>
<div>Click to expand the boxes</div>
<?php
$this->addForm->setAction($this->url());
echo $this->addForm;
?>
<script>
$(document).ready(function(){
	$('fieldset').children('dl:gt(0)').hide();
	$('fieldset fieldset>legend').css('cursor','pointer');
	$('fieldset fieldset').click(
	function(e){		
		if($(e.target).context.nodeName == "LEGEND"){
			$(this).children('dl').slideToggle();
		}
	});

});
</script>