| Index: pkg/polymer/lib/elements/polymer-ui-toggle-button/demo.html
|
| diff --git a/pkg/polymer/lib/elements/polymer-ui-toggle-button/demo.html b/pkg/polymer/lib/elements/polymer-ui-toggle-button/demo.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9ba637bedb010006e04828a2feb5cefeb36b7d5b
|
| --- /dev/null
|
| +++ b/pkg/polymer/lib/elements/polymer-ui-toggle-button/demo.html
|
| @@ -0,0 +1,31 @@
|
| +
|
| +<!doctype html>
|
| +<!--
|
| +Copyright 2013 The Polymer Authors. All rights reserved.
|
| +Use of this source code is governed by a BSD-style
|
| +license that can be found in the LICENSE file.
|
| +-->
|
| +<html>
|
| + <head>
|
| + <title>Toggle Button</title>
|
| + <script src="../platform/platform.js"></script>
|
| + <link rel="import" href="polymer-ui-toggle-button.html">
|
| + <link rel="stylesheet" href="../polymer-ui-base/base.css">
|
| + <style>
|
| + .wide-button {
|
| + width: 100px;
|
| + }
|
| + </style>
|
| + </head>
|
| + <body class="polymer-ui-body-text" unresolved>
|
| + <polymer-ui-toggle-button></polymer-ui-toggle-button>
|
| + <br><br>
|
| + <polymer-ui-toggle-button value></polymer-ui-toggle-button>
|
| + <br><br>
|
| + <polymer-ui-toggle-button noCaption></polymer-ui-toggle-button>
|
| + <br><br>
|
| + <polymer-ui-toggle-button noCaption value></polymer-ui-toggle-button>
|
| + <br><br>
|
| + <polymer-ui-toggle-button class="wide-button" onCaption="OOOOOOON" offCaption="OFFFFFFF"></polymer-ui-toggle-button>
|
| + </body>
|
| +</html>
|
|
|