| 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 017a786cbb3cc9d80477bb10fe5a3fb249ae39c4..779dcdaf5d976f605010c7a060a559b3665fd307 100644
|
| --- a/chrome/browser/resources/ntp4/dot_list.js
|
| +++ b/chrome/browser/resources/ntp4/dot_list.js
|
| @@ -41,10 +41,10 @@ cr.define('ntp', function() {
|
| /**
|
| * Handler for key events on the dot list. These keys will change the focus
|
| * element.
|
| - * @param {Event} e The KeyboardEvent.
|
| + * @param {!Event} e The KeyboardEvent.
|
| */
|
| onKeyDown_: function(e) {
|
| - if (e.metaKey || e.shiftKey || e.altKey || e.ctrlKey)
|
| + if (hasKeyModifiers(e))
|
| return;
|
|
|
| var direction = 0;
|
|
|