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

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

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698