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