| OLD | NEW |
| 1 | |
| 2 | |
| 3 (function() { | 1 (function() { |
| 4 | 2 |
| 5 Polymer({ | 3 Polymer({ |
| 6 | 4 |
| 7 is: 'paper-dialog', | 5 is: 'paper-dialog', |
| 8 | 6 |
| 9 behaviors: [ | 7 behaviors: [ |
| 10 Polymer.PaperDialogBehavior, | 8 Polymer.PaperDialogBehavior, |
| 11 Polymer.NeonAnimationRunnerBehavior | 9 Polymer.NeonAnimationRunnerBehavior |
| 12 ], | 10 ], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 32 _onNeonAnimationFinish: function() { | 30 _onNeonAnimationFinish: function() { |
| 33 if (this.opened) { | 31 if (this.opened) { |
| 34 this._finishRenderOpened(); | 32 this._finishRenderOpened(); |
| 35 } else { | 33 } else { |
| 36 this._finishRenderClosed(); | 34 this._finishRenderClosed(); |
| 37 } | 35 } |
| 38 } | 36 } |
| 39 | 37 |
| 40 }); | 38 }); |
| 41 | 39 |
| 42 })(); | 40 })(); |
| 43 | |
| OLD | NEW |