From ab7b25882b9a9eaaee207a77fdfc692a4defaa41 Mon Sep 17 00:00:00 2001 From: Ava Wroten Date: Tue, 3 Mar 2020 15:22:16 -0600 Subject: [PATCH] Comment for bash --- content/posts/ember-modifiers.md | 2 ++ 1 file changed, 2 insertions(+) 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 ```