diff --git a/docs/client/api.html b/docs/client/api.html index 8d37d7a27f..cb0fb5f06f 100644 --- a/docs/client/api.html +++ b/docs/client/api.html @@ -455,7 +455,7 @@ the server. The return value is an object with the following fields: Instead of using callbacks to notify you on changes, this is a [reactive](#reactivity) data source. You can use it in a -[template](#templates) or [computation](#deps_autorun) +[template](#livehtmltemplates) or [computation](#deps_autorun) to get realtime updates. {{> api_box reconnect}} diff --git a/docs/client/concepts.html b/docs/client/concepts.html index a901f4c579..30df284a68 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -11,8 +11,7 @@ when writing those apps. {{> structure }} {{> data }} {{> reactivity }} -{{> livehtml }} -{{> templates }} +{{> livehtmltemplates }} {{> packages_concept }} {{> namespacing }} {{> deploying }} @@ -139,7 +138,7 @@ initial page load. Template sections, on the other hand, are converted into JavaScript functions, available under the `Template` namespace. It's a really convenient way to ship HTML templates to the client. -See the [templates](#templates) section for more. +See the [templates](#livehtmltemplates) section for more. Lastly, the Meteor server will serve any files under the `public` directory, just like in a Rails or Django project. This is the place @@ -387,9 +386,9 @@ error-prone logic. These Meteor functions run your code as a reactive computation: -* [Templates](#templates) +* [Templates](#livehtmltemplates) * [`Deps.autorun`](#deps_autorun) -* `UI.render` and `UI.renderWithData` +* [`UI.render`](#ui_render) and [`UI.renderWithData`](#ui_renderwithdata) And the reactive data sources that can trigger changes are: @@ -417,147 +416,95 @@ You can use it yourself to implement new reactive data sources. {{/markdown}} -