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

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

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake 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 * `IronResizableBehavior` is a behavior that can be used in Polymer elements to 3 * `IronResizableBehavior` is a behavior that can be used in Polymer elements to
4 * coordinate the flow of resize events between "resizers" (elements that cont rol the 4 * coordinate the flow of resize events between "resizers" (elements that cont rol the
5 * size or hidden state of their children) and "resizables" (elements that nee d to be 5 * size or hidden state of their children) and "resizables" (elements that nee d to be
6 * notified when they are resized or un-hidden by their parents in order to ta ke 6 * notified when they are resized or un-hidden by their parents in order to ta ke
7 * action on their new measurements). 7 * action on their new measurements).
8 * Elements that perform measurement should add the `IronResizableBehavior` be havior to 8 * Elements that perform measurement should add the `IronResizableBehavior` be havior to
9 * their element definition and listen for the `iron-resize` event on themselv es. 9 * their element definition and listen for the `iron-resize` event on themselv es.
10 * This event will be fired when they become showing after having been hidden, 10 * This event will be fired when they become showing after having been hidden,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 if (this._interestedResizables.indexOf(target) === -1) { 117 if (this._interestedResizables.indexOf(target) === -1) {
118 this._interestedResizables.push(target); 118 this._interestedResizables.push(target);
119 } 119 }
120 120
121 target.assignParentResizable(this); 121 target.assignParentResizable(this);
122 122
123 event.stopPropagation(); 123 event.stopPropagation();
124 } 124 }
125 }; 125 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698