Merge eth-go repository into go-ethereum
mist, etheruem have been moved to cmd/
This commit is contained in:
13
cmd/mist/assets/ext/http.js
Normal file
13
cmd/mist/assets/ext/http.js
Normal file
@ -0,0 +1,13 @@
|
||||
// this function is included locally, but you can also include separately via a header definition
|
||||
function request(url, callback) {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.onreadystatechange = (function(req) {
|
||||
return function() {
|
||||
if(req.readyState === 4) {
|
||||
callback(req);
|
||||
}
|
||||
}
|
||||
})(xhr);
|
||||
xhr.open('GET', url, true);
|
||||
xhr.send('');
|
||||
}
|
Reference in New Issue
Block a user