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

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

Issue 2092213003: [MD settings] update polymer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 Polymer({ 1 Polymer({
2 2
3 is: 'iron-collapse', 3 is: 'iron-collapse',
4 4
5 behaviors: [ 5 behaviors: [
6 Polymer.IronResizableBehavior 6 Polymer.IronResizableBehavior
7 ], 7 ],
8 8
9 properties: { 9 properties: {
10 10
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 for (var prop in rect) { 193 for (var prop in rect) {
194 if (rect[prop] !== 0) return true; 194 if (rect[prop] !== 0) return true;
195 } 195 }
196 return false; 196 return false;
197 }, 197 },
198 198
199 _calcSize: function() { 199 _calcSize: function() {
200 return this.getBoundingClientRect()[this.dimension] + 'px'; 200 return this.getBoundingClientRect()[this.dimension] + 'px';
201 } 201 }
202 202
203 }); 203 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698