Skip to content

Instantly share code, notes, and snippets.

@KaduNovoK
Created May 5, 2014 15:09
Show Gist options
  • Save KaduNovoK/8284ad01015954fb00c8 to your computer and use it in GitHub Desktop.
Save KaduNovoK/8284ad01015954fb00c8 to your computer and use it in GitHub Desktop.
angular.module('myModule')
.config(function ( $httpProvider) {
delete $httpProvider.defaults.headers.common['X-Requested-With'];
}).factory('featuresData', function ($http) {
return{
doCrossDomainGet: function() {
return $http({
url:'http://other.domain.com',
method: 'GET'
})
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment