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, 35 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/js/vendor/xhr.js b/StoneIsland/platforms/ios/www/js/vendor/xhr.js
new file mode 100644
index 00000000..715d1c60
--- /dev/null
+++ b/StoneIsland/platforms/ios/www/js/vendor/xhr.js
@@ -0,0 +1,35 @@
+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