aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ext
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-16 17:36:04 +0800
committerobscuren <geffobscura@gmail.com>2014-09-16 17:36:04 +0800
commitb89d9f6e90a561725899dd9bffb670efbf766386 (patch)
tree13b3871908e37d9562caa1d428d047c0f472519c /ethereal/assets/ext
parentd22db772480c517a853546d9ccbfb51367982303 (diff)
downloadgo-tangerine-b89d9f6e90a561725899dd9bffb670efbf766386.tar.gz
go-tangerine-b89d9f6e90a561725899dd9bffb670efbf766386.tar.zst
go-tangerine-b89d9f6e90a561725899dd9bffb670efbf766386.zip
Added DApp url bar (TBD) & changed behaviour for the menu selection
Diffstat (limited to 'ethereal/assets/ext')
-rw-r--r--ethereal/assets/ext/http.js13
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('');
+}