| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 (function() { | 3 (function() { |
| 4 | 4 |
| 5 var p = { | 5 var p = { |
| 6 | 6 |
| 7 publish: { | 7 publish: { |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * A label for the control. The label is displayed if no item is selected. | 10 * A label for the control. The label is displayed if no item is selected. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 if (detail.isSelected) { | 52 if (detail.isSelected) { |
| 53 this.selectedItemLabel = detail.item.label || detail.item.textContent; | 53 this.selectedItemLabel = detail.item.label || detail.item.textContent; |
| 54 } else { | 54 } else { |
| 55 this.selectedItemLabel = ''; | 55 this.selectedItemLabel = ''; |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 | 58 |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 Polymer.mixin2(p, Polymer.CoreFocusable); | 61 Polymer.mixin2(p, Polymer.CoreFocusable); |
| 62 Polymer('core-dropdown-menu',p); | 62 Polymer('paper-dropdown-menu',p); |
| 63 | 63 |
| 64 })(); | 64 })(); |
| 65 | 65 |
| OLD | NEW |