2011-10-16 23:08:44 +04:00
|
|
|
$(document).ready(function(){
|
|
|
|
$('#loglevel').change(function(){
|
2012-04-16 14:27:21 +04:00
|
|
|
$.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){
|
|
|
|
OC.Log.reload();
|
|
|
|
} );
|
2012-08-09 12:41:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#backgroundjobs input').change(function(){
|
|
|
|
if($(this).attr('checked')){
|
|
|
|
$.post(OC.filePath('settings','ajax','setbackgroundjobsmode.php'), { mode: $(this).val() });
|
|
|
|
}
|
|
|
|
});
|
2011-10-16 23:08:44 +04:00
|
|
|
});
|