| Index: third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html b/third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html
|
| index f32d104be1046dedaba3fd2f8dc8905980570f29..80b728bda6dccf3d7f5af30ca969b76807a5524b 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html
|
| @@ -24,12 +24,17 @@ Example:
|
| <paper-button>flat button</paper-button>
|
| <paper-button raised>raised button</paper-button>
|
| <paper-button noink>No ripple effect</paper-button>
|
| + <paper-button toggles>toggle-able button</paper-button>
|
| +
|
| +A button that has `toggles` true will remain `active` after being clicked (and
|
| +will have an `active` attribute set). For more information, see the `Polymer.IronButtonState`
|
| +behavior.
|
|
|
| You may use custom DOM in the button body to create a variety of buttons. For example, to
|
| create a button with an icon and some text:
|
|
|
| <paper-button>
|
| - <core-icon icon="favorite"></core-icon>
|
| + <iron-icon icon="favorite"></iron-icon>
|
| custom button content
|
| </paper-button>
|
|
|
|
|