OLD | NEW |
1 paper-spinner | 1 paper-spinner |
2 ============= | 2 ============= |
3 | 3 |
4 Element providing material design circular spinner. | 4 Element providing material design circular spinner. |
5 | 5 |
6 ##### Example | 6 ##### Example |
7 | 7 |
8 ```html | 8 ```html |
9 <paper-spinner active></paper-spinner> | 9 <paper-spinner active></paper-spinner> |
10 ``` | 10 ``` |
(...skipping 25 matching lines...) Expand all Loading... |
36 Alt attribute should be set to provide adequate context for accessibility. If no
t provided, | 36 Alt attribute should be set to provide adequate context for accessibility. If no
t provided, |
37 it defaults to 'loading'. | 37 it defaults to 'loading'. |
38 Empty alt can be provided to mark the element as decorative if alternative conte
nt is provided | 38 Empty alt can be provided to mark the element as decorative if alternative conte
nt is provided |
39 in another form (e.g. a text block following the spinner). | 39 in another form (e.g. a text block following the spinner). |
40 | 40 |
41 ##### Example | 41 ##### Example |
42 | 42 |
43 ```html | 43 ```html |
44 <paper-spinner alt="Loading contacts list" active></paper-spinner> | 44 <paper-spinner alt="Loading contacts list" active></paper-spinner> |
45 ``` | 45 ``` |
OLD | NEW |