| Index: tracing/tracing/ui/find_control.html
|
| diff --git a/tracing/tracing/ui/find_control.html b/tracing/tracing/ui/find_control.html
|
| index 0660438b199727305c23df385ad7fe7d4866db24..7cbdd79be109605da6c19c558016cd27f5ae70d2 100644
|
| --- a/tracing/tracing/ui/find_control.html
|
| +++ b/tracing/tracing/ui/find_control.html
|
| @@ -57,8 +57,6 @@ found in the LICENSE file.
|
| border-bottom: 2px solid rgba(0, 0, 0, 0.5);
|
| border-right: 2px solid rgba(0, 0, 0, 0.5);
|
| border-radius: 50%;
|
| -
|
| - animation: spin 1s linear infinite;
|
| }
|
| @keyframes spin { 100% { transform: rotate(360deg); } }
|
| </style>
|
| @@ -138,8 +136,10 @@ Polymer({
|
| filterTextChanged: function() {
|
| Polymer.dom(this.$.hitCount).textContent = '';
|
| this.$.spinner.style.visibility = 'visible';
|
| + this.$.spinner.style.animation = 'spin 1s linear infinite';
|
| this.controller.startFiltering(this.$.filter.value).then(function() {
|
| this.$.spinner.style.visibility = 'hidden';
|
| + this.$.spinner.style.animation = '';
|
| this.updateHitCountEl();
|
| }.bind(this));
|
| },
|
|
|