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

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

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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-fab',
4
5 behaviors: [
6 Polymer.PaperButtonBehavior
7 ],
8
9 properties: {
10 /**
11 * The URL of an image for the icon. If the src property is specified,
12 * the icon property should not be.
13 *
14 * @attribute src
15 * @type string
16 * @default ''
17 */
18 src: {
19 type: String,
20 value: ''
21 },
22
23 /**
24 * Specifies the icon name or index in the set of icons available in
25 * the icon's icon set. If the icon property is specified,
26 * the src property should not be.
27 *
28 * @attribute icon
29 * @type string
30 * @default ''
31 */
32 icon: {
33 type: String,
34 value: ''
35 },
36
37 /**
38 * Set this to true to style this is a "mini" FAB.
39 *
40 * @attribute mini
41 * @type boolean
42 * @default false
43 */
44 mini: {
45 type: Boolean,
46 value: false
47 }
48 }
49
50 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698