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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-menu-button/paper-menu-button-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 var PaperMenuButton = Polymer({ 5 var PaperMenuButton = Polymer({
5 is: 'paper-menu-button', 6 is: 'paper-menu-button',
6 7
7 /** 8 /**
8 * Fired when the dropdown opens. 9 * Fired when the dropdown opens.
9 * 10 *
10 * @event paper-dropdown-open 11 * @event paper-dropdown-open
11 */ 12 */
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 if (disabled && this.opened) { 243 if (disabled && this.opened) {
243 this.close(); 244 this.close();
244 } 245 }
245 } 246 }
246 }); 247 });
247 248
248 PaperMenuButton.ANIMATION_CUBIC_BEZIER = 'cubic-bezier(.3,.95,.5,1)'; 249 PaperMenuButton.ANIMATION_CUBIC_BEZIER = 'cubic-bezier(.3,.95,.5,1)';
249 PaperMenuButton.MAX_ANIMATION_TIME_MS = 400; 250 PaperMenuButton.MAX_ANIMATION_TIME_MS = 400;
250 251
251 Polymer.PaperMenuButton = PaperMenuButton; 252 Polymer.PaperMenuButton = PaperMenuButton;
252 })(); 253 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698