Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown-extracted.js

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698