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

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

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 5 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('paper-item',{
3
4 publish: {
5
6 /**
7 * If true, the button will be styled with a shadow.
8 *
9 * @attribute raised
10 * @type boolean
11 * @default false
12 */
13 raised: false,
14
15 /**
16 * By default the ripple emanates from where the user touched the button .
17 * Set this to true to always center the ripple.
18 *
19 * @attribute recenteringTouch
20 * @type boolean
21 * @default false
22 */
23 recenteringTouch: false,
24
25 /**
26 * By default the ripple expands to fill the button. Set this to false t o
27 * constrain the ripple to a circle within the button.
28 *
29 * @attribute fill
30 * @type boolean
31 * @default true
32 */
33 fill: true
34
35 }
36
37 });
38
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698