| Index: ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.js
|
| diff --git a/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.js b/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.js
|
| index 432c828d6b066bc932034e65f938e7956c98c6b6..0f4f1a5827573c939999de7eb3cbadaceb297b7c 100644
|
| --- a/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.js
|
| +++ b/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.js
|
| @@ -94,7 +94,10 @@ Polymer({
|
| * @private
|
| */
|
| computeIsSpinnerShown_: function() {
|
| - return this.spinnerActive && this.showingSearch;
|
| + var showSpinner = this.spinnerActive && this.showingSearch;
|
| + if (showSpinner)
|
| + this.$.spinnerTemplate.if = true;
|
| + return showSpinner;
|
| },
|
|
|
| /** @private */
|
|
|