diff options
Diffstat (limited to 'ethereal/assets/ext/http.js')
-rw-r--r-- | ethereal/assets/ext/http.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ethereal/assets/ext/http.js b/ethereal/assets/ext/http.js deleted file mode 100644 index 725ce8e6b..000000000 --- a/ethereal/assets/ext/http.js +++ /dev/null @@ -1,13 +0,0 @@ -// 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(''); -} |