summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/vendor/xhr.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/www/js/vendor/xhr.js')
-rw-r--r--StoneIsland/platforms/ios/www/js/vendor/xhr.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/StoneIsland/platforms/ios/www/js/vendor/xhr.js b/StoneIsland/platforms/ios/www/js/vendor/xhr.js
deleted file mode 100644
index 715d1c60..00000000
--- a/StoneIsland/platforms/ios/www/js/vendor/xhr.js
+++ /dev/null
@@ -1,35 +0,0 @@
-var XMLHTTPRequest = (function(){
-
- var xhr = function (opt) {
- this.status = 0
- this.readyState = 0
- this.response = ""
- this.responseText = ""
- this.responseType = "" // "" arraybuffer blob document json text
- this.responseXML = ""
- this.statusText = ""
- this.timeout = 0
- this.onreadystatechange = function(){}
- this.ontimeout = function(){}
- this.onload = function(){}
- this.headers = []
- this.upload = {}
- this.withCredentials = false
- }
- xhr.prototype.open = function(method, url, async, user, password){
- }
- xhr.prototype.abort = function(){
- }
- xhr.prototype.getAllResponseHeaders = function(){
- }
- xhr.prototype.getResponseHeader = function(){
- }
- xhr.prototype.overrideMimeType = function(){
- }
- xhr.prototype.setRequestHeader = function(key, value){
- this.headers.push({ key: key, value: value })
- }
- xhr.prototype.send = function(data){
- }
-
-})() \ No newline at end of file