mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
13 lines
No EOL
380 B
JavaScript
13 lines
No EOL
380 B
JavaScript
$(document).ready(function(){
|
|
$('#loglevel').change(function(){
|
|
$.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){
|
|
OC.Log.reload();
|
|
} );
|
|
});
|
|
|
|
$('#backgroundjobs input').change(function(){
|
|
if($(this).attr('checked')){
|
|
$.post(OC.filePath('settings','ajax','setbackgroundjobsmode.php'), { mode: $(this).val() });
|
|
}
|
|
});
|
|
}); |