Skip to content

Instantly share code, notes, and snippets.

@thure
Last active December 11, 2015 16:58
Show Gist options
  • Save thure/4630893 to your computer and use it in GitHub Desktop.
Save thure/4630893 to your computer and use it in GitHub Desktop.
SCION works for Windows Store apps if you override these platform values in this way.
ajax : WinJS.xhr,
getDocumentFromUrl : function(url,cb){
this.ajax({ url: url }).then(
function (r) {
cb(null,r.responseXML);
},
function (e) {
cb(e);
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment