2012-03-19 14:56:02 +04:00
|
|
|
function switchPublicFolder()
|
2011-07-09 23:44:50 +04:00
|
|
|
{
|
2012-03-19 14:56:02 +04:00
|
|
|
var publicEnable = $('#publicEnable').is(':checked');
|
|
|
|
var sharingaimGroup = $('input:radio[name=sharingaim]'); //find all radiobuttons of that group
|
|
|
|
$.each(sharingaimGroup, function(index, sharingaimItem) {
|
|
|
|
sharingaimItem.disabled = !publicEnable; //set all buttons to the correct state
|
|
|
|
});
|
2011-07-09 23:44:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
2012-03-19 14:56:02 +04:00
|
|
|
switchPublicFolder(); // Execute the function after loading DOM tree
|
|
|
|
$('#publicEnable').click(function(){
|
|
|
|
switchPublicFolder(); // To get rid of onClick()
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#allowZipDownload').bind('change', function() {
|
|
|
|
if($('#allowZipDownload').attr('checked')) {
|
|
|
|
$('#maxZipInputSize').removeAttr('disabled');
|
|
|
|
} else {
|
|
|
|
$('#maxZipInputSize').attr('disabled', 'disabled');
|
|
|
|
}
|
|
|
|
});
|
2011-07-09 23:44:50 +04:00
|
|
|
});
|