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

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

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 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 (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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698