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

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

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
2 2
3 Polymer({ 3 Polymer({
4 4
5 is: 'iron-collapse', 5 is: 'iron-collapse',
6 6
7 properties: { 7 properties: {
8 8
9 /** 9 /**
10 * If true, the orientation is horizontal; otherwise is vertical. 10 * If true, the orientation is horizontal; otherwise is vertical.
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 this.enableTransition(false); 108 this.enableTransition(false);
109 }, 109 },
110 110
111 _calcSize: function() { 111 _calcSize: function() {
112 return this.getBoundingClientRect()[this.dimension] + 'px'; 112 return this.getBoundingClientRect()[this.dimension] + 'px';
113 }, 113 },
114 114
115 115
116 }); 116 });
117 117
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698