aboutsummaryrefslogtreecommitdiffstats
path: root/settings/js/admin.js
blob: 409594a4b94698840f70afd56f382defe245cdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$(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() });
		}
	});
});