| OLD | NEW |
| 1 | 1 (function() { |
| 2 (function() { | |
| 3 'use strict'; | 2 'use strict'; |
| 4 | 3 |
| 5 Polymer({ | 4 Polymer({ |
| 6 is: 'iron-dropdown', | 5 is: 'iron-dropdown', |
| 7 | 6 |
| 8 behaviors: [ | 7 behaviors: [ |
| 9 Polymer.IronControlState, | 8 Polymer.IronControlState, |
| 10 Polymer.IronA11yKeysBehavior, | 9 Polymer.IronA11yKeysBehavior, |
| 11 Polymer.IronOverlayBehavior, | 10 Polymer.IronOverlayBehavior, |
| 12 Polymer.NeonAnimationRunnerBehavior | 11 Polymer.NeonAnimationRunnerBehavior |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 _focusContent: function() { | 376 _focusContent: function() { |
| 378 // NOTE(cdata): This is async so that it can attempt the focus after | 377 // NOTE(cdata): This is async so that it can attempt the focus after |
| 379 // `display: none` is removed from the element. | 378 // `display: none` is removed from the element. |
| 380 this.async(function() { | 379 this.async(function() { |
| 381 if (this._focusTarget) { | 380 if (this._focusTarget) { |
| 382 this._focusTarget.focus(); | 381 this._focusTarget.focus(); |
| 383 } | 382 } |
| 384 }); | 383 }); |
| 385 } | 384 } |
| 386 }); | 385 }); |
| 387 })(); | 386 })(); |
| 388 | |
| OLD | NEW |