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

Side by Side 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 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // To avoid creating tons of unnecessary nodes. We assume we cannot fit more 5 // To avoid creating tons of unnecessary nodes. We assume we cannot fit more
6 // than this many items in the miniview. 6 // than this many items in the miniview.
7 var MAX_MINIVIEW_ITEMS = 15; 7 var MAX_MINIVIEW_ITEMS = 15;
8 8
9 // Extra spacing at the top of the layout. 9 // Extra spacing at the top of the layout.
10 var LAYOUT_SPACING_TOP = 25; 10 var LAYOUT_SPACING_TOP = 25;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 a.style.backgroundImage = 'url(' + imageUrl + ')'; 66 a.style.backgroundImage = 'url(' + imageUrl + ')';
67 addClosedMenuEntryWithLink(menu, a); 67 addClosedMenuEntryWithLink(menu, a);
68 } 68 }
69 69
70 function addClosedMenuFooter(menu, sectionId, mask, opt_section) { 70 function addClosedMenuFooter(menu, sectionId, mask, opt_section) {
71 menu.appendChild(document.createElement('hr')); 71 menu.appendChild(document.createElement('hr'));
72 72
73 var span = document.createElement('span'); 73 var span = document.createElement('span');
74 var a = span.appendChild(document.createElement('a')); 74 var a = span.appendChild(document.createElement('a'));
75 a.href = ''; 75 a.href = '';
76 a.textContent = 76 if (cr.isChromeOS) {
77 localStrings.getString(getSectionMenuButtonTextId(sectionId)); 77 a.textContent = localStrings.getString('expandMenu');
78 } else {
79 a.textContent =
80 localStrings.getString(getSectionMenuButtonTextId(sectionId));
81 }
78 a.className = 'item'; 82 a.className = 'item';
79 a.addEventListener( 83 a.addEventListener(
80 'click', 84 'click',
81 function(e) { 85 function(e) {
82 getSectionMenuButton(sectionId).hideMenu(); 86 getSectionMenuButton(sectionId).hideMenu();
83 e.preventDefault(); 87 e.preventDefault();
84 setSectionVisible(sectionId, opt_section, true, mask); 88 setSectionVisible(sectionId, opt_section, true, mask);
85 shownSections &= ~mask; 89 shownSections &= ~mask;
86 saveShownSections(); 90 saveShownSections();
87 }); 91 });
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 y += section.fixedHeight; 430 y += section.fixedHeight;
427 431
428 if (section.maxiview && section == expandedSection) { 432 if (section.maxiview && section == expandedSection) {
429 section.maxiview.style.top = y + 'px'; 433 section.maxiview.style.top = y + 'px';
430 updateMask(section.maxiview, expandedSectionHeight); 434 updateMask(section.maxiview, expandedSectionHeight);
431 } 435 }
432 436
433 if (section == expandedSection) 437 if (section == expandedSection)
434 y += expandedSectionHeight; 438 y += expandedSectionHeight;
435 } 439 }
440 if (cr.isChromeOS)
441 $('closed-sections-bar').style.top = y + 'px';
436 442
437 updateAttributionDisplay(y); 443 updateAttributionDisplay(y);
438 } 444 }
439 445
440 function updateMask(maxiview, visibleHeightPx) { 446 function updateMask(maxiview, visibleHeightPx) {
441 // We want to end up with 10px gradients at the top and bottom of 447 // We want to end up with 10px gradients at the top and bottom of
442 // visibleHeight, but webkit-mask only supports expression in terms of 448 // visibleHeight, but webkit-mask only supports expression in terms of
443 // percentages. 449 // percentages.
444 450
445 // We might not have enough room to do 10px gradients on each side. To get the 451 // We might not have enough room to do 10px gradients on each side. To get the
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 var promoLink = promoText1.querySelector('a'); 1246 var promoLink = promoText1.querySelector('a');
1241 promoLink.id = 'apps-promo-link'; 1247 promoLink.id = 'apps-promo-link';
1242 promoLink.href = localStrings.getString('web_store_url'); 1248 promoLink.href = localStrings.getString('web_store_url');
1243 1249
1244 $('apps-promo-hide').addEventListener('click', function() { 1250 $('apps-promo-hide').addEventListener('click', function() {
1245 chrome.send('hideAppsPromo', []); 1251 chrome.send('hideAppsPromo', []);
1246 document.documentElement.classList.remove('apps-promo-visible'); 1252 document.documentElement.classList.remove('apps-promo-visible');
1247 layoutSections(); 1253 layoutSections();
1248 }); 1254 });
1249 }); 1255 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698