According to this :

The project currently supports and will attempt to fix bugs for IE9 and 
above. The continuous integration server runs all the tests against IE9, 
IE10, and IE11. See Travis CI <https://travis-ci.org/angular/angular.js>
 and ci.angularjs.org.

I have angular running on localhost:3000 but I'm testing via virtual 
machine trough ngrok.com , so address is something like 
dadasda1312.ngrok.com and my api is running on localhost:9292 . I'm 
supposed to supported IE9 +

I can't get even IE11 to work for simple contact form, important bit :

  $http({
                method  : 'POST',
                url     : window.config.API_URL + '/contacts',
                data    : $.param($scope.formData), 
                headers : { 'Content-Type': 
'application/x-www-form-urlencoded' } 
            })

I mean I can get it working using https://github.com/jpillora/xdomain , 
which is something really that I shouldn't be taking care of if I'm doing 
simple POST right? Or on the other hand I'm doing something wrong? 

In the IE I get the message :

Network error access is denied.

I would really like not to have to user the proxy, for the reasons I don't 
think I need to get in, for the context of this question. Any help is 
appreciated

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to