| Index: chrome/browser/resources/help/help_page.js
|
| diff --git a/chrome/browser/resources/help/help_page.js b/chrome/browser/resources/help/help_page.js
|
| index 04c4756bced49d141a34de8b14dcf133590e1b6c..7e075f2bafce6c85dc9b54f8e86b1e86b7e5568d 100644
|
| --- a/chrome/browser/resources/help/help_page.js
|
| +++ b/chrome/browser/resources/help/help_page.js
|
| @@ -165,9 +165,7 @@
|
| var logo = $('product-logo');
|
| logo.onclick = function(e) {
|
| logo.classList.remove('spin');
|
| - // Force a style recalc that cancels the animation specified by "spin".
|
| - getComputedStyle(logo).animationName;
|
| - logo.classList.add('spin');
|
| + setTimeout(function() { logo.classList.add('spin'); }, 0);
|
| };
|
|
|
| // Attempt to update.
|
|
|