Chromium Code Reviews| Index: ui/keyboard/resources/elements/kb-key-base.html |
| diff --git a/ui/keyboard/resources/elements/kb-key-base.html b/ui/keyboard/resources/elements/kb-key-base.html |
| index 5036aa8dc2efbe88c45cd2b33ee93f62326d231b..419c253f150ccb9bbc7f2168ef4cedb720b41b99 100644 |
| --- a/ui/keyboard/resources/elements/kb-key-base.html |
| +++ b/ui/keyboard/resources/elements/kb-key-base.html |
| @@ -181,7 +181,7 @@ |
| * @param {detail} The details of the swipe. |
| */ |
| onFlick: function(detail) { |
| - if (!(detail.direction & SWIPE_DIRECTION.UP) || !this.hintTextValue) |
|
rsadam
2014/03/05 19:57:47
Drive by fix.
|
| + if (!(detail.direction & SwipeDirection.UP) || !this.hintTextValue) |
| return; |
| var typeDetails = {char: this.hintTextValue}; |
| this.fire('type-key', typeDetails); |