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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-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-icon-button', 3 is: 'paper-icon-button',
4 4
5 behaviors: [ 5 behaviors: [
6 Polymer.PaperButtonBehavior 6 Polymer.PaperButtonBehavior,
7 Polymer.PaperRadioButtonBehavior
7 ], 8 ],
8 9
9 enableCustomStyleProperties: true,
10
11 properties: { 10 properties: {
12 /** 11 /**
13 * The URL of an image for the icon. If the src property is specified, 12 * The URL of an image for the icon. If the src property is specified,
14 * the icon property should not be. 13 * the icon property should not be.
15 */ 14 */
16 src: { 15 src: {
17 type: String 16 type: String
18 }, 17 },
19 18
20 /** 19 /**
21 * Specifies the icon name or index in the set of icons available in 20 * Specifies the icon name or index in the set of icons available in
22 * the icon's icon set. If the icon property is specified, 21 * the icon's icon set. If the icon property is specified,
23 * the src property should not be. 22 * the src property should not be.
24 */ 23 */
25 icon: { 24 icon: {
26 type: String 25 type: String
27 } 26 }
28 } 27 }
29 }); 28 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698