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

Unified Diff: chrome/browser/resources/settings/about_page/about_page.js

Issue 2324523002: MD Settings: restore super important about page functionality (Closed)
Patch Set: typo Created 4 years, 3 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/resources/settings/about_page/about_page.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/about_page/about_page.js
diff --git a/chrome/browser/resources/settings/about_page/about_page.js b/chrome/browser/resources/settings/about_page/about_page.js
index cdf419a16127abacf240781862a792db44cce77d..69fda24b8c4b39d0f37d2d7682ad284d415caee7 100644
--- a/chrome/browser/resources/settings/about_page/about_page.js
+++ b/chrome/browser/resources/settings/about_page/about_page.js
@@ -279,6 +279,15 @@ Polymer({
},
</if>
+ /** @private */
+ onProductLogoTap_: function() {
+ var logo = this.$['product-logo'];
+ logo.classList.remove('spin');
+ // Force a style recalc that cancels the animation specified by "spin".
+ getComputedStyle(logo).getPropertyValue('animation-name');
+ logo.classList.add('spin');
alancutter (OOO until 2018) 2016/09/08 01:58:47 If this doesn't get run on iOS you could write thi
Dan Beam 2016/09/08 17:41:24 Okie dokie: https://codereview.chromium.org/232191
+ },
+
<if expr="_google_chrome">
/** @private */
onReportIssueTap_: function() {
« no previous file with comments | « chrome/browser/resources/settings/about_page/about_page.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698