From 9c12eb5ef184de8698f65ae1335a073aa9a21758 Mon Sep 17 00:00:00 2001 From: dorontal Date: Sun, 17 Jan 2016 15:50:39 -0500 Subject: [PATCH] fix argument name argument name did not match the variable name inside the function --- ionic/components/searchbar/searchbar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic/components/searchbar/searchbar.ts b/ionic/components/searchbar/searchbar.ts index 26d8cc1aee..e4902ba770 100644 --- a/ionic/components/searchbar/searchbar.ts +++ b/ionic/components/searchbar/searchbar.ts @@ -20,7 +20,7 @@ export class SearchbarInput { * @private * Don't send the input's input event */ - private stopInput(ev) { + private stopInput(event) { event.preventDefault(); event.stopPropagation(); }