fix argument name

argument name did not match the variable name inside the function
This commit is contained in:
dorontal
2016-01-17 15:50:39 -05:00
parent 2d10593dce
commit 9c12eb5ef1

View File

@@ -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();
}