| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 Polymer({ |
| 2 is: 'paper-tooltip', | 3 is: 'paper-tooltip', |
| 3 | 4 |
| 4 hostAttributes: { | 5 hostAttributes: { |
| 5 role: 'tooltip', | 6 role: 'tooltip', |
| 6 tabindex: -1 | 7 tabindex: -1 |
| 7 }, | 8 }, |
| 8 | 9 |
| 9 behaviors: [ | 10 behaviors: [ |
| 10 Polymer.NeonAnimationRunnerBehavior | 11 Polymer.NeonAnimationRunnerBehavior |
| 11 ], | 12 ], |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 this.style.top = tooltipTop + 'px'; | 215 this.style.top = tooltipTop + 'px'; |
| 215 } | 216 } |
| 216 | 217 |
| 217 }, | 218 }, |
| 218 | 219 |
| 219 _onAnimationFinish: function() { | 220 _onAnimationFinish: function() { |
| 220 if (!this._showing) { | 221 if (!this._showing) { |
| 221 this.toggleClass('hidden', true, this.$.tooltip); | 222 this.toggleClass('hidden', true, this.$.tooltip); |
| 222 } | 223 } |
| 223 }, | 224 }, |
| 224 }); | 225 }); |
| 226 |
| OLD | NEW |