You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaproperty="og:description" content="angular-meteor is a realtime full stack that combines the best frameworks. use your existing Angular applications with Meteor - the best backend framework for AngularJS applications."/>
<metaname="twitter:description" content="angular-meteor is a realtime full stack that combines the best frameworks. use your existing Angular applications with Meteor - the best backend framework for AngularJS applications."/>
You can read more about AngularMeteorCollection and it's helper functions in the [API reference](http://angularjs.meteor.com/api/AngularMeteorCollection).
172
+
You can read more about AngularMeteorCollection and it's helper functions in the [API reference](/api/AngularMeteorCollection).
But Angular's scope variables are only watched by Angular and are not reactive vars for Meteor...
239
239
240
-
For that angular-meteor created [getReactively](http://angularjs.meteor.com/api/getReactively) - a way to make an Angular scope variable to a reactive variable.
240
+
For that angular-meteor created [getReactively](/api/getReactively) - a way to make an Angular scope variable to a reactive variable.
241
241
242
242
In order to make the subscription run each time something changes in one of the parameters, we need to place it inside an autorun block.
243
-
To do that, we are going to use the [$meteor.autorun](http://angularjs.meteor.com/api/utils) function:
243
+
244
+
To do that, we are going to use the [$meteor.autorun](/api/utils) function:
But this still won't help us because there is no reactive variables inside. so let's use [getReactively](http://angularjs.meteor.com/api/getReactively) for that:
258
+
But this still won't help us because there is no reactive variables inside, so let's use [getReactively](/api/getReactively) for that:
We created a `credentials` object containing email and password that will be passed to us from the view. We created a `login` method that will execute the user log in.
406
406
407
-
You can see a list of API methods for users management provided by `angular-meteor` [here](http://angularjs.meteor.com/api/auth).
407
+
You can see a list of API methods for users management provided by `angular-meteor` [here](/api/auth).
408
408
409
409
Just as we did in the `logout` route, here we utilize an `angular-meteor` method `$meteor.loginWithPassword()` which takes two arguments
0 commit comments