Skip to content

Commit ea55a25

Browse files
authored
Update 2020-04-24-the-ember-times-issue-145.md
1 parent 36a2750 commit ea55a25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/2020-04-24-the-ember-times-issue-145.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Ember Styleguide 4.0.0 release 🔥,
1212
autotracking case study with TrackedMap 🐾🗺,
1313
simple drag and drop in Ember Octane 🐺,
1414
meet 2 developers who became Ember developers 🎉,
15-
and last, but not least, watch the new Ember Map video on the `{{fn}}` helper 📺!
15+
and last, but not least, watch the new EmberMap video on the `{{fn}}` helper 📺!
1616

1717
<SOME-INTRO-HERE-TO-KEEP-THEM-SUBSCRIBERS-READING>
1818

@@ -77,11 +77,11 @@ If you are interested in learning more about solving the Todo problem in Ember a
7777

7878
---
7979

80-
## [Ember Map: The {{fn}} Helper 📺](https://embermap.com/topics/what-s-new-in-ember/the-fn-helper-3-11)
80+
## [EmberMap: The {{fn}} Helper 📺](https://embermap.com/topics/what-s-new-in-ember/the-fn-helper-3-11)
8181

82-
This edition of Ember Map’s [What’s New in Ember](https://embermap.com/topics/what-s-new-in-ember) series discusses the `fn` or [function helper](https://github.com/emberjs/rfcs/pull/470) – Ember's conceptual shift in binding actions at the source, rather than at the invocation site.
82+
This edition of EmberMap’s [What’s New in Ember](https://embermap.com/topics/what-s-new-in-ember) series discusses the `fn` or [function helper](https://github.com/emberjs/rfcs/pull/470) – Ember's conceptual shift in binding actions at the source, rather than at the invocation site.
8383

84-
The [`fn` helper](http://api.emberjs.com/ember/release/classes/Ember.Templates.helpers/methods/fn?anchor=fn) which has been available since [Ember 3.11](https://blog.emberjs.com/2019/07/15/ember-3-11-released.html), provides a way to pass arguments to actions. While this may be something Ember already provided for a long time, the Ember Map video goes through the nuisance of how the `fn` helper provides added functionality by binding the `this` context and currying the arguments passed. For example, it allows you to [pass parameters along to functions](https://guides.emberjs.com/release/upgrading/current-edition/action-on-and-fn/) in your templates:
84+
The [`fn` helper](http://api.emberjs.com/ember/release/classes/Ember.Templates.helpers/methods/fn?anchor=fn) which has been available since [Ember 3.11](https://blog.emberjs.com/2019/07/15/ember-3-11-released.html), provides a way to pass arguments to actions. While this may be something Ember already provided for a long time, the EmberMap video goes through the nuisance of how the `fn` helper provides added functionality by binding the `this` context and currying the arguments passed. For example, it allows you to [pass parameters along to functions](https://guides.emberjs.com/release/upgrading/current-edition/action-on-and-fn/) in your templates:
8585

8686
```hbs
8787
<!-- Before -->
@@ -93,7 +93,7 @@ The [`fn` helper](http://api.emberjs.com/ember/release/classes/Ember.Templates.h
9393
<MyComponent @onClick={{fn this.handleClick 123}} />
9494
```
9595

96-
Check out the full [Ember Map video](https://embermap.com/topics/what-s-new-in-ember/the-fn-helper-3-11) and try using the `fn` helper in your app today!
96+
Check out the full [EmberMap video](https://embermap.com/topics/what-s-new-in-ember/the-fn-helper-3-11) and try using the `fn` helper in your app today!
9797

9898
---
9999

0 commit comments

Comments
 (0)