nextcloud/settings/js/admin.js

13 lines
380 B
JavaScript
Raw Normal View History

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();
} );
});
$('#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
});