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

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

Powered by Google App Engine
This is Rietveld 408576698