diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-16 17:36:04 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-16 17:36:04 +0800 |
commit | b89d9f6e90a561725899dd9bffb670efbf766386 (patch) | |
tree | 13b3871908e37d9562caa1d428d047c0f472519c /ethereal/assets/ext/http.js | |
parent | d22db772480c517a853546d9ccbfb51367982303 (diff) | |
download | dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar.gz dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar.bz2 dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar.lz dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar.xz dexon-b89d9f6e90a561725899dd9bffb670efbf766386.tar.zst dexon-b89d9f6e90a561725899dd9bffb670efbf766386.zip |
Added DApp url bar (TBD) & changed behaviour for the menu selection
Diffstat (limited to 'ethereal/assets/ext/http.js')
-rw-r--r-- | ethereal/assets/ext/http.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ethereal/assets/ext/http.js b/ethereal/assets/ext/http.js new file mode 100644 index 000000000..725ce8e6b --- /dev/null +++ b/ethereal/assets/ext/http.js @@ -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(''); +} |