Skip to content

Instantly share code, notes, and snippets.

@euforic
euforic / xhr.js
Created August 21, 2013 22:08
superagent XHR Titanium Shim
function XMLHttpRequest() {
// titanium xhr client
this._proxy = Ti.Network.createHTTPClient();
// mapping for compatible functions
this.getResponseHeader = this._proxy.getResponseHeader;
this.open = this._proxy.open;