| 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 7e075f2bafce6c85dc9b54f8e86b1e86b7e5568d..4269098fc154ce0fcf518eba84595ac3f231e0cf 100644
|
| --- a/chrome/browser/resources/help/help_page.js
|
| +++ b/chrome/browser/resources/help/help_page.js
|
| @@ -165,7 +165,9 @@ cr.define('help', function() {
|
| var logo = $('product-logo');
|
| logo.onclick = function(e) {
|
| logo.classList.remove('spin');
|
| - setTimeout(function() { logo.classList.add('spin'); }, 0);
|
| + // Force a style recalc that cancels the animation specified by "spin".
|
| + getComputedStyle(logo).getPropertyValue('animation-name');
|
| + logo.classList.add('spin');
|
| };
|
|
|
| // Attempt to update.
|
|
|