| OLD | NEW |
| 1 | 1 /** @polymerBehavior */ |
| 2 | |
| 3 /** @polymerBehavior */ | |
| 4 Polymer.PaperButtonBehaviorImpl = { | 2 Polymer.PaperButtonBehaviorImpl = { |
| 5 | 3 |
| 6 properties: { | 4 properties: { |
| 7 | 5 |
| 8 _elevation: { | 6 _elevation: { |
| 9 type: Number | 7 type: Number |
| 10 } | 8 } |
| 11 | 9 |
| 12 }, | 10 }, |
| 13 | 11 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 31 } | 29 } |
| 32 this._elevation = e; | 30 this._elevation = e; |
| 33 } | 31 } |
| 34 }; | 32 }; |
| 35 | 33 |
| 36 /** @polymerBehavior */ | 34 /** @polymerBehavior */ |
| 37 Polymer.PaperButtonBehavior = [ | 35 Polymer.PaperButtonBehavior = [ |
| 38 Polymer.IronButtonState, | 36 Polymer.IronButtonState, |
| 39 Polymer.IronControlState, | 37 Polymer.IronControlState, |
| 40 Polymer.PaperButtonBehaviorImpl | 38 Polymer.PaperButtonBehaviorImpl |
| 41 ]; | 39 ]; |
| 42 | |
| OLD | NEW |