summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/vendor/xhr.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-16 15:06:56 -0400
committerJules Laplace <jules@okfoc.us>2015-09-16 15:06:56 -0400
commit14699818d58beef4b9b20b3ddb3e03641c0b7f21 (patch)
tree954ead80ac9b3fed5e75fa18eac4ab157a642a43 /StoneIsland/platforms/ios/www/js/vendor/xhr.js
parent0ff689f69ccf98d0a3e6f4e190fa3e44cf44c44c (diff)
populate collectionview
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