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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-menu/paper-submenu-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
2
3 (function() { 1 (function() {
4 2
5 Polymer({ 3 Polymer({
6 4
7 is: 'paper-submenu', 5 is: 'paper-submenu',
8 6
9 properties: { 7 properties: {
10 /** 8 /**
11 * Fired when the submenu is opened. 9 * Fired when the submenu is opened.
12 * 10 *
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 _disabledChanged: function(disabled) { 121 _disabledChanged: function(disabled) {
124 Polymer.IronControlState._disabledChanged.apply(this, arguments); 122 Polymer.IronControlState._disabledChanged.apply(this, arguments);
125 if (disabled && this._active) { 123 if (disabled && this._active) {
126 this.close(); 124 this.close();
127 125
128 } 126 }
129 } 127 }
130 128
131 }); 129 });
132 130
133 })(); 131 })();
134
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698