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

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

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh 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
1 1
2 Polymer({ 2 Polymer({
3 is: 'paper-material', 3 is: 'paper-material',
4 4
5 enableCustomStyleProperties: true,
6
7 properties: { 5 properties: {
8 6
9 /** 7 /**
10 * 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
11 * shadow, and each increasing number greater than 0 will be "deeper" 9 * shadow, and each increasing number greater than 0 will be "deeper"
12 * than the last. 10 * than the last.
13 * 11 *
14 * @attribute elevation 12 * @attribute elevation
15 * @type number 13 * @type number
16 * @default 1 14 * @default 1
(...skipping 12 matching lines...) Expand all
29 * @type boolean 27 * @type boolean
30 * @default false 28 * @default false
31 */ 29 */
32 animated: { 30 animated: {
33 type: Boolean, 31 type: Boolean,
34 reflectToAttribute: true, 32 reflectToAttribute: true,
35 value: false 33 value: false
36 } 34 }
37 } 35 }
38 }); 36 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698