Added the @MeteorReactive annotation in order to support Angular-Meteor 1.3.
Used an annotation in order to do not effect another users of angular2-now.
Also, added the @LocalInjectables annotation which puts all the injectables on the this context, in order to be able to use it from class methods, for example:
@Inject('$http')
@LocalInjectables
class t {
constructor() {
}
myMethod() {
this.$http(...);
}
}
@pbastowski @Urigo @netanelgilad
Added the
@MeteorReactive
annotation in order to support Angular-Meteor 1.3. Used an annotation in order to do not effect another users of angular2-now.Also, added the @LocalInjectables annotation which puts all the injectables on the
this
context, in order to be able to use it from class methods, for example: