server/settings/js/admin.js

7 lines
195 B
JavaScript
Raw Normal View History

2011-10-16 19:08:44 +00:00
$(document).ready(function(){
$('#loglevel').change(function(){
2012-04-16 10:27:21 +00:00
$.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){
OC.Log.reload();
} );
2011-10-16 19:08:44 +00:00
})
});