Skip to content

Instantly share code, notes, and snippets.

@adriaandotcom
Last active August 29, 2015 14:22
Show Gist options
  • Save adriaandotcom/c80db5447ec85e38b609 to your computer and use it in GitHub Desktop.
Save adriaandotcom/c80db5447ec85e38b609 to your computer and use it in GitHub Desktop.
CORS
export default Ember.Controller.extend({
appName:'Testing CORS on IE',
init: function() {
$.get('https://api.socialshop-development.nl').done(function(data) {
console.log("got result: ", data);
});
}
});
<h1>{{appName}}</h1><br><br>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment