Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Side by Side Diff: third_party/polymer/v0_8/components-chromium/paper-material/paper-material-extracted.js

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1
2 Polymer({
3 is: 'paper-material',
4
5 properties: {
6
7 /**
8 * 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"
10 * than the last.
11 *
12 * @attribute elevation
13 * @type number
14 * @default 1
15 */
16 elevation: {
17 type: Number,
18 reflectToAttribute: true,
19 value: 1
20 },
21
22 /**
23 * Set this to true to animate the shadow when setting a new
24 * `elevation` value.
25 *
26 * @attribute animated
27 * @type boolean
28 * @default false
29 */
30 animated: {
31 type: Boolean,
32 reflectToAttribute: true,
33 value: false
34 }
35 }
36 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698