Index: chrome/browser/resources/ntp4/new_tab.js |
diff --git a/chrome/browser/resources/ntp4/new_tab.js b/chrome/browser/resources/ntp4/new_tab.js |
index d28e407ea37c7fa005a9cd5cf46b30dc113ff317..bfeacdbfacbf923a61171ac88d9be61ff2918d29 100644 |
--- a/chrome/browser/resources/ntp4/new_tab.js |
+++ b/chrome/browser/resources/ntp4/new_tab.js |
@@ -208,9 +208,11 @@ cr.define('ntp4', function() { |
chrome.send('introMessageSeen'); |
} |
+ /* |
bookmarksPage = new ntp4.BookmarksPage(); |
appendTilePage(bookmarksPage, localStrings.getString('bookmarksPage')); |
chrome.send('getBookmarksData'); |
+ */ |
var serverpromo = localStrings.getString('serverpromo'); |
if (serverpromo) { |
@@ -416,7 +418,7 @@ cr.define('ntp4', function() { |
// Set the App dot names. Skip the first and last dots (Most Visited and |
// Bookmarks). |
var dots = dotList.getElementsByClassName('dot'); |
- for (var i = 1; i < dots.length - 2; ++i) { |
+ for (var i = 1; i < dots.length - 1; ++i) { |
dots[i].displayTitle = data.appPageNames[i - 1] || ''; |
} |
} |