mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
swap enable and dissable error messages
This commit is contained in:
parent
d8864d4f4b
commit
386663ddb6
1 changed files with 2 additions and 2 deletions
|
|
@ -30,14 +30,14 @@ $(document).ready(function(){
|
|||
if(active){
|
||||
$.post(OC.filePath('settings','ajax','disableapp.php'),{appid:app},function(result){
|
||||
if(!result || result.status!='succes'){
|
||||
OC.dialogs.alert('Error','Error while enabling app');
|
||||
OC.dialogs.alert('Error','Error while disabling app');
|
||||
}
|
||||
},'json');
|
||||
$('#leftcontent li[data-id="'+app+'"]').removeClass('active');
|
||||
}else{
|
||||
$.post(OC.filePath('settings','ajax','enableapp.php'),{appid:app},function(result){
|
||||
if(!result || result.status!='succes'){
|
||||
OC.dialogs.alert('Error','Error while disabling app');
|
||||
OC.dialogs.alert('Error','Error while enabling app');
|
||||
}
|
||||
},'json');
|
||||
$('#leftcontent li[data-id="'+app+'"]').addClass('active');
|
||||
|
|
|
|||
Loading…
Reference in a new issue