2011-12-05 02:36:25 +00:00
|
|
|
$(document).ready(function(){
|
2011-12-23 10:34:21 +00:00
|
|
|
$('#user_role_id').change(function(){
|
|
|
|
$('#roles .attributes_block').hide();
|
2011-12-05 02:36:25 +00:00
|
|
|
$('#'+this.value+'_block').toggle();
|
|
|
|
});
|
2011-12-23 10:34:21 +00:00
|
|
|
|
|
|
|
$('.sub_role_select').change(function(){
|
|
|
|
$('#sub_role_' + this.value).toggle();
|
|
|
|
});
|
2011-12-05 02:36:25 +00:00
|
|
|
});
|