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

Unified Diff: chrome/browser/resources/ntp4/tile_page.js

Issue 7529051: ntp: use web store as default mv tile instead of themes gallery (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months 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
« no previous file with comments | « chrome/browser/history/top_sites.cc ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4f6ecdb644292142065d11164d78201f008b97c1..c2dcaa5fcc1c8fe08f1c20e50c8e2ed92cdf919a 100644
--- a/chrome/browser/resources/ntp4/tile_page.js
+++ b/chrome/browser/resources/ntp4/tile_page.js
@@ -390,6 +390,8 @@ cr.define('ntp4', function() {
// Div that holds the tiles.
this.tileGrid_ = this.ownerDocument.createElement('div');
this.tileGrid_.className = 'tile-grid';
+ this.tileGrid_.style.minWidth = (this.gridValues_.minColCount *
csilv 2011/08/09 19:11:20 is this change intended for this CL? just sanity
+ this.gridValues_.minTileWidth) + 'px';
this.content_.appendChild(this.tileGrid_);
// Ordered list of our tiles.
« no previous file with comments | « chrome/browser/history/top_sites.cc ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698