server/settings/js/admin.js

38 lines
989 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();
} );
});
$('#backgroundjobs input').change(function(){
if($(this).attr('checked')){
var mode = $(this).val();
if (mode == 'ajax' || mode == 'webcron' || mode == 'cron') {
OC.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
}
}
});
2012-08-28 00:36:34 +00:00
$('#shareAPIEnabled').change(function() {
$('.shareAPI td:not(#enable)').toggle();
});
$('#shareAPI input').change(function() {
if ($(this).attr('type') == 'checkbox') {
if (this.checked) {
var value = 'yes';
} else {
var value = 'no';
}
} else {
2012-09-05 20:17:33 +00:00
var value = $(this).val();
2012-08-28 00:36:34 +00:00
}
OC.AppConfig.setValue('core', $(this).attr('name'), value);
2012-08-28 00:36:34 +00:00
});
$('#security').change(function(){
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} );
});
2012-09-05 20:17:33 +00:00
});