| 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="../iron-flex-layout/iron-flex-layout.html"> | 10 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 `--paper-spinner-color` | Color of the spinner | `--google-blue-500` | 39 `--paper-spinner-color` | Color of the spinner | `--google-blue-500` |
| 40 `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px | 40 `--paper-spinner-stroke-width` | The width of the spinner stroke | 3px |
| 41 | 41 |
| 42 @group Paper Elements | 42 @group Paper Elements |
| 43 @element paper-spinner-lite | 43 @element paper-spinner-lite |
| 44 @hero hero.svg | 44 @hero hero.svg |
| 45 @demo demo/index.html | 45 @demo demo/index.html |
| 46 --> | 46 --> |
| 47 | 47 |
| 48 </head><body><dom-module id="paper-spinner-lite"> | 48 </head><body><dom-module id="paper-spinner-lite"> |
| 49 <template> | 49 <template strip-whitespace=""> |
| 50 <style include="paper-spinner-styles"></style> | 50 <style include="paper-spinner-styles"></style> |
| 51 | 51 |
| 52 <div id="spinnerContainer" class-name="[[__computeContainerClasses(active, _
_coolingDown)]]"> | 52 <div id="spinnerContainer" class-name="[[__computeContainerClasses(active, _
_coolingDown)]]"> |
| 53 <div class="spinner-layer"> | 53 <div class="spinner-layer"> |
| 54 <div class="circle-clipper left"> | 54 <div class="circle-clipper left"></div> |
| 55 <div class="circle"></div> | 55 <div class="circle-clipper right"></div> |
| 56 </div><div class="gap-patch"> | |
| 57 <div class="circle"></div> | |
| 58 </div><div class="circle-clipper right"> | |
| 59 <div class="circle"></div> | |
| 60 </div> | |
| 61 </div> | 56 </div> |
| 62 </div> | 57 </div> |
| 63 </template> | 58 </template> |
| 64 | 59 |
| 65 </dom-module> | 60 </dom-module> |
| 66 <script src="paper-spinner-lite-extracted.js"></script></body></html> | 61 <script src="paper-spinner-lite-extracted.js"></script></body></html> |
| OLD | NEW |