OLD | NEW |
(Empty) | |
| 1 |
| 2 <!doctype html> |
| 3 <!-- |
| 4 Copyright 2013 The Polymer Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style |
| 6 license that can be found in the LICENSE file. |
| 7 --> |
| 8 <html> |
| 9 <head> |
| 10 <title>Toggle Button</title> |
| 11 <script src="../platform/platform.js"></script> |
| 12 <link rel="import" href="polymer-ui-toggle-button.html"> |
| 13 <link rel="stylesheet" href="../polymer-ui-base/base.css"> |
| 14 <style> |
| 15 .wide-button { |
| 16 width: 100px; |
| 17 } |
| 18 </style> |
| 19 </head> |
| 20 <body class="polymer-ui-body-text" unresolved> |
| 21 <polymer-ui-toggle-button></polymer-ui-toggle-button> |
| 22 <br><br> |
| 23 <polymer-ui-toggle-button value></polymer-ui-toggle-button> |
| 24 <br><br> |
| 25 <polymer-ui-toggle-button noCaption></polymer-ui-toggle-button> |
| 26 <br><br> |
| 27 <polymer-ui-toggle-button noCaption value></polymer-ui-toggle-button> |
| 28 <br><br> |
| 29 <polymer-ui-toggle-button class="wide-button" onCaption="OOOOOOON" offCaptio
n="OFFFFFFF"></polymer-ui-toggle-button> |
| 30 </body> |
| 31 </html> |
OLD | NEW |