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