added error message if attachments are not allowed

This commit is contained in:
Jeena Paradies 2012-12-28 12:44:56 +01:00
parent e5704ddda7
commit 80728df815
3 changed files with 21 additions and 4 deletions

View file

@ -101,7 +101,7 @@ function(jQuery, HostApp, Hmac, Cache) {
data: data,
processData: false,
error: function(xhr, ajaxOptions, thrownError) {
console.error("postMultipart " + xhr.statusText + " (" + url + "): '" + xhr.responseText + "'");
console.error("postMultipart (" + xhr.status + ")" + xhr.statusText + " (" + url + "): '" + xhr.responseText + "'");
}
});
}