OLD | NEW |
1 paper-tabs | 1 paper-tabs |
2 ============ | 2 ============ |
3 | 3 |
4 `paper-tabs` makes it easy to explore and switch between different views or func
tional aspects of | 4 `paper-tabs` makes it easy to explore and switch between different views or func
tional aspects of |
5 an app, or to browse categorized data sets. | 5 an app, or to browse categorized data sets. |
6 | 6 |
7 Use `selected` property to get or set the selected tab. | 7 Use `selected` property to get or set the selected tab. |
8 | 8 |
9 Example: | 9 Example: |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 <a href="#link1" class="horizontal center-center layout">TAB ONE</a> | 47 <a href="#link1" class="horizontal center-center layout">TAB ONE</a> |
48 </paper-tab> | 48 </paper-tab> |
49 <paper-tab link> | 49 <paper-tab link> |
50 <a href="#link2" class="horizontal center-center layout">TAB TWO</a> | 50 <a href="#link2" class="horizontal center-center layout">TAB TWO</a> |
51 </paper-tab> | 51 </paper-tab> |
52 <paper-tab link> | 52 <paper-tab link> |
53 <a href="#link3" class="horizontal center-center layout">TAB THREE</a> | 53 <a href="#link3" class="horizontal center-center layout">TAB THREE</a> |
54 </paper-tab> | 54 </paper-tab> |
55 </paper-tabs> | 55 </paper-tabs> |
56 ``` | 56 ``` |
OLD | NEW |