Fix icon select widget to be compatible with iTop 2.7

This commit is contained in:
Molkobain
2020-03-12 11:17:01 +01:00
parent bbfddea93d
commit 774ace2302

View File

@@ -281,8 +281,16 @@ $(function()
},
_on_upload_error: function(data, status, e)
{
alert(e);
this.oUploadDlg.closest('.ui-dialog').find('.ui-button').button('enable');
if(data.responseText.indexOf('login-body') !== false)
{
alert('Sorry, your session has expired. In order to continue, the whole page has to be loaded again.');
this.oUploadDlg.dialog('close');
}
else
{
alert(e);
this.oUploadDlg.closest('.ui-dialog').find('.ui-button').button('enable');
}
}
});
});