mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-17 16:40:40 +00:00
Added DApp url bar (TBD) & changed behaviour for the menu selection
This commit is contained in:
parent
d22db77248
commit
b89d9f6e90
2 changed files with 871 additions and 744 deletions
13
ethereal/assets/ext/http.js
Normal file
13
ethereal/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('');
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue