Chromium Code Reviews| Index: components/neterror/resources/offline.js |
| diff --git a/components/neterror/resources/offline.js b/components/neterror/resources/offline.js |
| index 21bd28663501b1067115f1787391b51a846e9529..005f4f3ae20dc570369df092d783a9e5bfec0e13 100644 |
| --- a/components/neterror/resources/offline.js |
| +++ b/components/neterror/resources/offline.js |
| @@ -650,7 +650,7 @@ Runner.prototype = { |
| */ |
| onKeyDown: function(e) { |
| // Prevent native page scrolling whilst tapping on mobile. |
| - if (IS_MOBILE) { |
| + if (IS_MOBILE && this.activated) { |
|
mmenke
2016/06/28 13:39:21
If I'm following the code right, this means that y
|
| e.preventDefault(); |
| } |