Merge pull request #4988 from dorontal/patch-1

fix(Searchbar): stopInput() argument name typo
This commit is contained in:
Adam Bradley
2016-01-19 09:32:54 -06:00

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