paypro: more debugging.
This commit is contained in:
parent
49883779af
commit
2d12933112
2 changed files with 26 additions and 0 deletions
|
|
@ -84,6 +84,12 @@ var $http = G.$http || function $http(options, callback) {
|
|||
// Newer browsers:
|
||||
xhr.responseType = 'arraybuffer';
|
||||
|
||||
xhr.onreadystatechange = function() {
|
||||
if (xhr.readyState == 4) {
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
xhr.onload = function(event) {
|
||||
var response = xhr.response;
|
||||
var buf = new Uint8Array(response);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue