diff --git a/content/posts/ember-modifiers.md b/content/posts/ember-modifiers.md index 24bf4ff..a909ac0 100644 --- a/content/posts/ember-modifiers.md +++ b/content/posts/ember-modifiers.md @@ -25,6 +25,7 @@ In a nutshell, the next time you reach for a `didInsertElement()` with an `addEv First we install the library ```bash +# In Your Terminal ember install ember-modifier ``` @@ -65,6 +66,7 @@ export default class MyComponent extends Component { We can create a custom modifier like so: ```bash +# In Your Terminal ember g modifier key-down ```