| OLD | NEW |
| 1 (function() { | 1 |
| 2 (function() { |
| 2 'use strict'; | 3 'use strict'; |
| 3 | 4 |
| 4 Polymer({ | 5 Polymer({ |
| 5 is: 'iron-dropdown', | 6 is: 'iron-dropdown', |
| 6 | 7 |
| 7 behaviors: [ | 8 behaviors: [ |
| 8 Polymer.IronControlState, | 9 Polymer.IronControlState, |
| 9 Polymer.IronA11yKeysBehavior, | 10 Polymer.IronA11yKeysBehavior, |
| 10 Polymer.IronOverlayBehavior, | 11 Polymer.IronOverlayBehavior, |
| 11 Polymer.NeonAnimationRunnerBehavior | 12 Polymer.NeonAnimationRunnerBehavior |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 _focusContent: function() { | 363 _focusContent: function() { |
| 363 // NOTE(cdata): This is async so that it can attempt the focus after | 364 // NOTE(cdata): This is async so that it can attempt the focus after |
| 364 // `display: none` is removed from the element. | 365 // `display: none` is removed from the element. |
| 365 this.async(function() { | 366 this.async(function() { |
| 366 if (this._focusTarget) { | 367 if (this._focusTarget) { |
| 367 this._focusTarget.focus(); | 368 this._focusTarget.focus(); |
| 368 } | 369 } |
| 369 }); | 370 }); |
| 370 } | 371 } |
| 371 }); | 372 }); |
| 372 })(); | 373 })(); |
| 374 |
| OLD | NEW |