summaryrefslogtreecommitdiffstats
path: root/settings/js/admin.js
blob: a3585f7e1c24113e1da93977f5172d6066702b0d (plain)
1
2
3
4
5
$(document).ready(function(){
	$('#loglevel').change(function(){
		$.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() } );
	})
});