Blame view
sources/settings/js/admin.js
982 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 |
$(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')){
var mode = $(this).val();
|
|
31b7f2792
|
11 |
if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') {
|
|
03e52840d
|
12 13 14 15 16 17 18 19 20 21 |
OC.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
}
}
});
$('#shareAPIEnabled').change(function() {
$('.shareAPI td:not(#enable)').toggle();
});
$('#shareAPI input').change(function() {
|
|
31b7f2792
|
22 |
if ($(this).attr('type') === 'checkbox') {
|
|
03e52840d
|
23 24 25 26 27 28 29 30 31 32 33 34 |
if (this.checked) {
var value = 'yes';
} else {
var value = 'no';
}
} else {
var value = $(this).val();
}
OC.AppConfig.setValue('core', $(this).attr('name'), value);
});
$('#security').change(function(){
|
|
31b7f2792
|
35 |
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );
|
|
03e52840d
|
36 37 |
}); }); |