Commit 92d1306d authored by estade@chromium.org's avatar estade@chromium.org

ntp4: tweak the minimum size we're willing to show tiles at

this number was chosen so that we show a 4-wide display for 768px-wide windows.

BUG=92866
TEST=manual


Review URL: http://codereview.chromium.org/7658007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96925 0039d316-1c4b-4281-b951-d872f2087c98
parent c0510ec0
...@@ -382,7 +382,7 @@ cr.define('ntp4', function() { ...@@ -382,7 +382,7 @@ cr.define('ntp4', function() {
maxColCount: 6, maxColCount: 6,
// The smallest a tile can be. // The smallest a tile can be.
minTileWidth: 96 / APP_IMG_SIZE_FRACTION, minTileWidth: 64 / APP_IMG_SIZE_FRACTION,
// The biggest a tile can be. // The biggest a tile can be.
maxTileWidth: 128 / APP_IMG_SIZE_FRACTION, maxTileWidth: 128 / APP_IMG_SIZE_FRACTION,
}; };
......
...@@ -239,7 +239,7 @@ cr.define('ntp4', function() { ...@@ -239,7 +239,7 @@ cr.define('ntp4', function() {
// TODO(estade): Change these to real values. // TODO(estade): Change these to real values.
// The smallest a tile can be. // The smallest a tile can be.
minTileWidth: 200, minTileWidth: 122,
// The biggest a tile can be. // The biggest a tile can be.
maxTileWidth: 240, maxTileWidth: 240,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment