OLD | NEW |
1 | 1 Polymer({ |
2 Polymer({ | |
3 is: 'paper-material', | 2 is: 'paper-material', |
4 | 3 |
5 properties: { | 4 properties: { |
6 | 5 |
7 /** | 6 /** |
8 * The z-depth of this element, from 0-5. Setting to 0 will remove the | 7 * The z-depth of this element, from 0-5. Setting to 0 will remove the |
9 * shadow, and each increasing number greater than 0 will be "deeper" | 8 * shadow, and each increasing number greater than 0 will be "deeper" |
10 * than the last. | 9 * than the last. |
11 * | 10 * |
12 * @attribute elevation | 11 * @attribute elevation |
(...skipping 13 matching lines...) Expand all Loading... |
26 * @attribute animated | 25 * @attribute animated |
27 * @type boolean | 26 * @type boolean |
28 * @default false | 27 * @default false |
29 */ | 28 */ |
30 animated: { | 29 animated: { |
31 type: Boolean, | 30 type: Boolean, |
32 reflectToAttribute: true, | 31 reflectToAttribute: true, |
33 value: false | 32 value: false |
34 } | 33 } |
35 } | 34 } |
36 }); | 35 }); |
OLD | NEW |