| OLD | NEW |
| 1 /** | 1 |
| 2 /** |
| 2 `iron-selector` is an element which can be used to manage a list of elements | 3 `iron-selector` is an element which can be used to manage a list of elements |
| 3 that can be selected. Tapping on the item will make the item selected. The `
selected` indicates | 4 that can be selected. Tapping on the item will make the item selected. The `
selected` indicates |
| 4 which item is being selected. The default is to use the index of the item. | 5 which item is being selected. The default is to use the index of the item. |
| 5 | 6 |
| 6 Example: | 7 Example: |
| 7 | 8 |
| 8 <iron-selector selected="0"> | 9 <iron-selector selected="0"> |
| 9 <div>Item 1</div> | 10 <div>Item 1</div> |
| 10 <div>Item 2</div> | 11 <div>Item 2</div> |
| 11 <div>Item 3</div> | 12 <div>Item 3</div> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 */ | 46 */ |
| 46 | 47 |
| 47 Polymer({ | 48 Polymer({ |
| 48 | 49 |
| 49 is: 'iron-selector', | 50 is: 'iron-selector', |
| 50 | 51 |
| 51 behaviors: [ | 52 behaviors: [ |
| 52 Polymer.IronMultiSelectableBehavior | 53 Polymer.IronMultiSelectableBehavior |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 }); | 56 }); |
| 57 |
| OLD | NEW |