Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: chrome/browser/resources/new_new_tab.js

Issue 5340007: NTP update for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address aa's comments Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/new_new_tab.js
diff --git a/chrome/browser/resources/new_new_tab.js b/chrome/browser/resources/new_new_tab.js
index a3b2aa6c63384bb4cc763abe76acd6e0eaa37e0a..8aeb4a8eb15f457ac1ee42bc3fc6e726c76a3556 100644
--- a/chrome/browser/resources/new_new_tab.js
+++ b/chrome/browser/resources/new_new_tab.js
@@ -73,8 +73,12 @@ function addClosedMenuFooter(menu, sectionId, mask, opt_section) {
var span = document.createElement('span');
var a = span.appendChild(document.createElement('a'));
a.href = '';
- a.textContent =
- localStrings.getString(getSectionMenuButtonTextId(sectionId));
+ if (cr.isChromeOS) {
+ a.textContent = localStrings.getString('expandMenu');
+ } else {
+ a.textContent =
+ localStrings.getString(getSectionMenuButtonTextId(sectionId));
+ }
a.className = 'item';
a.addEventListener(
'click',
@@ -433,6 +437,8 @@ function layoutSections() {
if (section == expandedSection)
y += expandedSectionHeight;
}
+ if (cr.isChromeOS)
+ $('closed-sections-bar').style.top = y + 'px';
updateAttributionDisplay(y);
}

Powered by Google App Engine
This is Rietveld 408576698