| Index: chrome/browser/resources/ntp4/dot_list.js
|
| diff --git a/chrome/browser/resources/ntp4/dot_list.js b/chrome/browser/resources/ntp4/dot_list.js
|
| index da6ef01c28ada4964e4d89e0e7f3287ebf7bc6b8..017a786cbb3cc9d80477bb10fe5a3fb249ae39c4 100644
|
| --- a/chrome/browser/resources/ntp4/dot_list.js
|
| +++ b/chrome/browser/resources/ntp4/dot_list.js
|
| @@ -48,9 +48,9 @@ cr.define('ntp', function() {
|
| return;
|
|
|
| var direction = 0;
|
| - if (e.keyIdentifier == 'Left')
|
| + if (e.key == 'ArrowLeft')
|
| direction = -1;
|
| - else if (e.keyIdentifier == 'Right')
|
| + else if (e.key == 'ArrowRight')
|
| direction = 1;
|
| else
|
| return;
|
|
|