From 65462a26cd763bb70af65661c816fdf38a5879a9 Mon Sep 17 00:00:00 2001 From: Jen Weber Date: Sun, 19 May 2019 22:58:31 -0400 Subject: [PATCH 1/6] finish up remaining link-to and input conversions --- guides/release/routing/redirection.md | 2 +- guides/release/templates/input-helpers.md | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/guides/release/routing/redirection.md b/guides/release/routing/redirection.md index 4a16c41dc3..c23124a023 100644 --- a/guides/release/routing/redirection.md +++ b/guides/release/routing/redirection.md @@ -10,7 +10,7 @@ Ember allows you to control that access with a combination of hooks and methods One of the methods is [`transitionTo()`](https://www.emberjs.com/api/ember/release/classes/Route/methods/transitionTo?anchor=transitionTo). Calling `transitionTo()` from a route or [`transitionToRoute()`](https://www.emberjs.com/api/ember/release/classes/Controller/methods/transitionToRoute?anchor=transitionToRoute) from a controller will stop any transitions currently in progress and start a new one, functioning as a redirect. -`transitionTo()` behaves exactly like the [link-to](../../templates/links/) helper. +`transitionTo()` behaves exactly like the [LinkTo](../../templates/links/) helper. The other one is [`replaceWith()`](https://www.emberjs.com/api/ember/release/classes/Route/methods/transitionTo?anchor=replaceWith/) which works the same way as `transitionTo()`. The only difference between them is how they manage history. diff --git a/guides/release/templates/input-helpers.md b/guides/release/templates/input-helpers.md index 1f6b199828..44a6ef6e30 100644 --- a/guides/release/templates/input-helpers.md +++ b/guides/release/templates/input-helpers.md @@ -1,12 +1,12 @@ -The [`{{input}}`](https://www.emberjs.com/api/ember/release/classes/Ember.Templates.helpers/methods/if?anchor=input) -and [`{{textarea}}`](https://www.emberjs.com/api/ember/release/classes/Ember.Templates.helpers/methods/if?anchor=textarea) +The [`Input`](https://www.emberjs.com/api/ember/release/classes/Ember.Templates.helpers/methods/if?anchor=input) +and [`textArea`](https://www.emberjs.com/api/ember/release/classes/Ember.Templates.helpers/methods/if?anchor=textarea) helpers in Ember.js are the easiest way to create common form controls. Using these helpers, you can create form controls that are almost identical to the native HTML `` or `