OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../paper-styles/color.html"> |
| 11 <link rel="import" href="../paper-styles/default-theme.html"> |
10 <link rel="import" href="../paper-ripple/paper-ripple.html"> | 12 <link rel="import" href="../paper-ripple/paper-ripple.html"> |
11 <link rel="import" href="../paper-behaviors/paper-inky-focus-behavior.html"> | 13 <link rel="import" href="../paper-behaviors/paper-inky-focus-behavior.html"> |
12 | 14 |
13 <!-- | 15 <!-- |
14 `paper-toggle-button` provides a ON/OFF switch that user can toggle the state | 16 `paper-toggle-button` provides a ON/OFF switch that user can toggle the state |
15 by tapping or by dragging the switch. | 17 by tapping or by dragging the switch. |
16 | 18 |
17 Example: | 19 Example: |
18 | 20 |
19 <paper-toggle-button></paper-toggle-button> | 21 <paper-toggle-button></paper-toggle-button> |
(...skipping 27 matching lines...) Expand all Loading... |
47 <div id="toggleBar" class="toggle-bar"></div> | 49 <div id="toggleBar" class="toggle-bar"></div> |
48 <div id="toggleButton" class="toggle-button"> | 50 <div id="toggleButton" class="toggle-button"> |
49 <paper-ripple id="ink" class="toggle-ink circle" recenters=""></paper-ri
pple> | 51 <paper-ripple id="ink" class="toggle-ink circle" recenters=""></paper-ri
pple> |
50 </div> | 52 </div> |
51 </div> | 53 </div> |
52 | 54 |
53 </template> | 55 </template> |
54 | 56 |
55 </dom-module> | 57 </dom-module> |
56 <script src="paper-toggle-button-extracted.js"></script></body></html> | 58 <script src="paper-toggle-button-extracted.js"></script></body></html> |
OLD | NEW |