fixed not working _self target

This commit is contained in:
Ralf Becker
2013-09-02 13:25:00 +00:00
parent 7a0df1531d
commit e2cce43bad
3 changed files with 11 additions and 4 deletions

View File

@ -328,7 +328,9 @@ egw_json_request.prototype.sendRequest = function(_async, _callback, _sender)
dataType: 'json',
type: 'POST',
success: this.handleResponse,
error: function(_xmlhttp,_err) { window.console.error('Ajax request to ' + this.url + ' failed: ' + _err); }
error: function(_xmlhttp,_err) {
window.console.error('Ajax request to ' + this.url + ' failed: ' + _err);
}
});
}