From c61f48d150b4ef770872ff8cb9320e89b85f7b99 Mon Sep 17 00:00:00 2001 From: Alex Ford Date: Sat, 18 Nov 2017 12:32:43 -0500 Subject: [PATCH] Added an example of attaching an event handler function. --- src/components/input/input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/input/input.ts b/src/components/input/input.ts index 47440738e3e..d90afcb38aa 100644 --- a/src/components/input/input.ts +++ b/src/components/input/input.ts @@ -44,8 +44,8 @@ import { Platform } from '../../platform/platform'; * `checkbox`, `radio`, `toggle`, `range`, `select`, etc. * * Along with the blur/focus events, `input` support all standard text input - * events like `keyup`, `keydown`, `keypress`, `input`,etc. Any standard event - * can be attached and will function as expected. + * events like `keyup`, `keydown`, `keypress`, `input`, etc. Any standard event + * can be attached and will function as expected. Example: `` * * @usage * ```html