diff --git a/docs/client/api.html b/docs/client/api.html index 83580b0103..f9f10bdf74 100644 --- a/docs/client/api.html +++ b/docs/client/api.html @@ -1994,7 +1994,7 @@ Override fields of the object by assigning to them: a `String` for the subject line of a reset password email. - `resetPassword.text`: A `Function` that takes a user object and a url, and returns the body text for a reset password email. - - `resetPassword.html`: An optional `Function` that takes a user object and a + - `resetPassword.html`: An optional `Function` that takes a user object and a url, and returns the body html for a reset password email. - `enrollAccount`: Same as `resetPassword`, but for initial password setup for new accounts. @@ -2558,6 +2558,11 @@ advanced facilities such as `Deps.Dependency` and `onInvalidate` callbacks are intended primarily for package authors implementing new reactive data sources. +To learn more about how Deps works and to explore advanced features of Deps, +visit the Deps chapter in the +Meteor Manual, which describes it in +complete detail. + {{> api_box deps_autorun }} `Deps.autorun` allows you to run a function that depends on reactive data @@ -2633,6 +2638,10 @@ after processing outstanding invalidations. It is illegal to call `flush` from inside a `flush` or from a running computation. +The Meteor Manual +describes the motivation for the flush cycle and the guarantees made by +`Deps.flush` and `Deps.afterFlush`. + {{> api_box deps_nonreactive }} Calls `func` with `Deps.currentComputation` temporarily set to `null` @@ -2820,6 +2829,10 @@ A Dependency's dependent computations are always valid (they have either by the Dependency itself or some other way, it is immediately removed. +See the +Meteor Manual to learn how to create a reactive data source using + Deps.Dependency. + {{> api_box dependency_changed }} {{> api_box dependency_depend }} diff --git a/docs/client/introduction.html b/docs/client/introduction.html index 7783fe4024..6a5220c5a4 100644 --- a/docs/client/introduction.html +++ b/docs/client/introduction.html @@ -130,6 +130,11 @@ with the project!