mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
- LSdefault :: checkAjaxReturn() : Correction de la méthode et ajout du support des LSinfos
This commit is contained in:
parent
792f556592
commit
72fb5737cd
1 changed files with 8 additions and 4 deletions
|
@ -57,20 +57,24 @@ var LSdefault = new Class({
|
|||
},
|
||||
|
||||
checkAjaxReturn: function(data) {
|
||||
if (typeof(data) == 'object') {
|
||||
if (typeof(data.imgload) != "undefined") {
|
||||
if ($type(data) == 'object') {
|
||||
if ($type(data.imgload)) {
|
||||
this.loadingImgHide(data.imgload);
|
||||
}
|
||||
else {
|
||||
this.loadingImgHide();
|
||||
}
|
||||
|
||||
if (typeof(data.LSdebug) != "undefined") {
|
||||
if ($type(data.LSdebug)) {
|
||||
LSdebug(data.LSdebug);
|
||||
this.displayDebug(data.LSdebug);
|
||||
}
|
||||
|
||||
if (typeof(data.LSerror) != "undefined") {
|
||||
if ($type(data.LSinfos)) {
|
||||
this.displayInfos(data.LSinfos);
|
||||
}
|
||||
|
||||
if ($type(data.LSerror)) {
|
||||
this.displayError(data.LSerror);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue