Index: chrome/browser/resources/ntp/apps.js |
diff --git a/chrome/browser/resources/ntp/apps.js b/chrome/browser/resources/ntp/apps.js |
index 9f4daa0d1979c82cff893329baf8852cc9886ec1..2694cbeb8d67d40b8ebbce30fecd14b71157c66e 100644 |
--- a/chrome/browser/resources/ntp/apps.js |
+++ b/chrome/browser/resources/ntp/apps.js |
@@ -244,6 +244,9 @@ var apps = (function() { |
div.setAttribute('new', 'new'); |
// Delay changing the attribute a bit to let the page settle down a bit. |
setTimeout(function() { |
+ // Make sure the new icon is scrolled into view. |
+ document.body.scrollTop = document.body.scrollHeight; |
+ |
// This will trigger the 'bounce' animation defined in apps.css. |
div.setAttribute('new', 'installed'); |
}, 500); |