Martin, well, hard to say.
What I recommend you to do : - Move to alpha37 released yesterday (https://code.angularjs.org/2.0.0-alpha.37/) - Include in your HTML the file http.dev.js - In bootstrap (imported now from 'angular2/bootstrap') add 'HTTP_BINDINGS' (imported from 'angular2/http') Note : Http must be imported from 'angular2/http' too - Then, if you are using typescript 1.5.3 you should use @Inject in the constructor constructor(@Inject(Http) http: Http) If you are using typescript 1.6.0-beta you can inject it without the @Inject. Regards -- 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.
