Changed the js code for the files admin section to jQuery
This commit is contained in:
parent
47993fe29a
commit
76aceb9970
|
@ -1,11 +1,11 @@
|
|||
<script type="text/javascript">
|
||||
function switchPublicFolder()
|
||||
{
|
||||
var publicEnable = document.forms['filesForm'].elements['publicEnable'].checked;
|
||||
var sharingaimGroup = document.forms['filesForm'].elements['sharingaim'];
|
||||
for(i=0;i<sharingaimGroup.length;i++) {
|
||||
sharingaimGroup[i].disabled = !publicEnable;
|
||||
}
|
||||
var publicEnable = $('#publicEnable').is(':checked');
|
||||
var sharingaimGroup = $('input:radio[name=sharingaim]');
|
||||
$.each(sharingaimGroup, function(index, sharingaimItem) {
|
||||
sharingaimItem.disabled = !publicEnable;
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<form name="filesForm" action='#' method='post'>
|
||||
|
|
Loading…
Reference in New Issue