mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
19 lines
527 B
HTML
19 lines
527 B
HTML
<!--
|
|
Copyright 2012 The Toolkitchen Authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Toggle Button</title>
|
|
<script src="../../polyfills/Components/components-polyfill.js" shadow="shim"></script>
|
|
<link rel="components" href="../../toolkit/src/g-togglebutton.html">
|
|
</head>
|
|
<body>
|
|
<g-togglebutton value="true"></g-togglebutton>
|
|
<br>
|
|
<g-togglebutton value="false"></g-togglebutton>
|
|
</body>
|
|
</html>
|