| OLD | NEW |
| 1 | 1 |
| 2 /** @polymerBehavior Polymer.IronMultiSelectableBehavior */ | 2 /** @polymerBehavior Polymer.IronMultiSelectableBehavior */ |
| 3 Polymer.IronMultiSelectableBehaviorImpl = { | 3 Polymer.IronMultiSelectableBehaviorImpl = { |
| 4 properties: { | 4 properties: { |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * If true, multiple selections are allowed. | 7 * If true, multiple selections are allowed. |
| 8 */ | 8 */ |
| 9 multi: { | 9 multi: { |
| 10 type: Boolean, | 10 type: Boolean, |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 this._selection.setItemSelected(this._valueToItem(value), unselected); | 97 this._selection.setItemSelected(this._valueToItem(value), unselected); |
| 98 } | 98 } |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 /** @polymerBehavior */ | 101 /** @polymerBehavior */ |
| 102 Polymer.IronMultiSelectableBehavior = [ | 102 Polymer.IronMultiSelectableBehavior = [ |
| 103 Polymer.IronSelectableBehavior, | 103 Polymer.IronSelectableBehavior, |
| 104 Polymer.IronMultiSelectableBehaviorImpl | 104 Polymer.IronMultiSelectableBehaviorImpl |
| 105 ]; | 105 ]; |
| 106 | 106 |
| OLD | NEW |