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

Unified Diff: third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html
diff --git a/third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html b/third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html
index 44b5d38d6f3c9c041b19d702dc04a5a00ff53e0e..3529b4d0ea1347172350d276aaf65d3b34b3abb7 100644
--- a/third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html
+++ b/third_party/polymer/v0_8/components/iron-resizable-behavior/iron-resizable-behavior.html
@@ -12,21 +12,21 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script>
/**
- `IronResizableBehavior` is a behavior that can be used in Polymer elements to
- coordinate the flow of resize events between "resizers" (elements that control the
- size or hidden state of their children) and "resizables" (elements that need to be
- notified when they are resized or un-hidden by their parents in order to take
- action on their new measurements).
- Elements that perform measurement should add the `IronResizableBehavior` behavior to
- their element definition and listen for the `iron-resize` event on themselves.
- This event will be fired when they become showing after having been hidden,
- when they are resized explicitly by another resizable, or when the window has been
- resized.
- Note, the `iron-resize` event is non-bubbling.
- @group Polymer Behaviors
- @element iron-resizable-behavior
- @homepage github.io
- */
+ * `IronResizableBehavior` is a behavior that can be used in Polymer elements to
+ * coordinate the flow of resize events between "resizers" (elements that control the
+ * size or hidden state of their children) and "resizables" (elements that need to be
+ * notified when they are resized or un-hidden by their parents in order to take
+ * action on their new measurements).
+ * Elements that perform measurement should add the `IronResizableBehavior` behavior to
+ * their element definition and listen for the `iron-resize` event on themselves.
+ * This event will be fired when they become showing after having been hidden,
+ * when they are resized explicitly by another resizable, or when the window has been
+ * resized.
+ * Note, the `iron-resize` event is non-bubbling.
+ *
+ * @polymerBehavior Polymer.IronResizableBehavior
+ * @demo demo/index.html
+ **/
Polymer.IronResizableBehavior = {
properties: {
_parentResizable: {

Powered by Google App Engine
This is Rietveld 408576698