mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Added links to Meteor Manual on docs page.
This commit is contained in:
@@ -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 <a href="http://manual.meteor.com/#deps"> Deps</a> chapter in the
|
||||
<a href="http://manual.meteor.com/">Meteor Manual</a>, 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 <a href="http://manual.meteor.com/#deps-theflushcycle">Meteor Manual</a>
|
||||
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 <a href="http://manual.meteor.com/#deps-reactivevaluewithdependency">
|
||||
Meteor Manual</a> to learn how to create a reactive data source using
|
||||
Deps.Dependency.
|
||||
|
||||
{{> api_box dependency_changed }}
|
||||
|
||||
{{> api_box dependency_depend }}
|
||||
|
||||
@@ -130,6 +130,11 @@ with the project!
|
||||
|
||||
<dt><span>GitHub</span></dt>
|
||||
<dd>The core code is on <a href="http://github.com/meteor/meteor">GitHub</a>. If you're able to write code or file issues, we'd love to have your help. Please read <a href="https://github.com/meteor/meteor/wiki/Contributing-to-Meteor">Contributing to Meteor</a> for how to get started.
|
||||
</dd>
|
||||
|
||||
<dt><span>The Meteor Manual</span></dt>
|
||||
<dd>In-depth articles about the core components of Meteor can be found on the<a href="http://manual.meteor.com/">Meteor Manual</a>. We've published the first article, which is about <a href="http://manual.meteor.com/#deps">Deps</a>, our transparent reactivity framework. More articles (covering topics like Blaze, Unibuild, and DDP) coming soon!
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
{{/markdown}}
|
||||
|
||||
Reference in New Issue
Block a user