| Index: chrome/browser/resources/ntp4/tile_page.js
|
| diff --git a/chrome/browser/resources/ntp4/tile_page.js b/chrome/browser/resources/ntp4/tile_page.js
|
| index 11907ffc0764741d560911dbf4de49d2b2687ab4..541bfbbcff183791f044bc760f16148726883bd5 100644
|
| --- a/chrome/browser/resources/ntp4/tile_page.js
|
| +++ b/chrome/browser/resources/ntp4/tile_page.js
|
| @@ -706,7 +706,7 @@ cr.define('ntp4', function() {
|
| var currentIndex =
|
| Array.prototype.indexOf.call(this.focusableElements_,
|
| this.currentFocusElement_);
|
| - var newFocusIdx = wrap(currentIndex + direction)
|
| + var newFocusIdx = wrap(currentIndex + direction);
|
| var tile = this.currentFocusElement_.parentNode;
|
| for (;; newFocusIdx = wrap(newFocusIdx + direction)) {
|
| var newTile = this.focusableElements_[newFocusIdx].parentNode;
|
|
|