defaultFailureMessage:gettext('This may be happening because of an error with our server or your internet connection. Try refreshing the page or making sure you are online.'),// eslint-disable-line max-len
global:false,// Do not trigger global AJAX error handler
redirected:true
});
}
);
}).fail(function(response){
if(response.responseText){
try{
errorMsg=JSON.parse(response.responseText).error;
}catch(error){
errorMsg=str.truncate(response.responseText,300);
}
}else{
errorMsg=gettext('This may be happening because of an error with our server or your internet connection. Try refreshing the page or making sure you are online.');// eslint-disable-line max-len