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

Unified Diff: third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html

Issue 1187823002: Update Polymer components and re-run reproduce.sh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html
diff --git a/third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html b/third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html
index affc81a9543a7a6a8fee85ebac5cfb6e8e4bc794..c4db37208274cc721a8b91107ad643e4154d8fba 100644
--- a/third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html
+++ b/third_party/polymer/v1_0/components/iron-overlay-behavior/iron-overlay-behavior.html
@@ -16,7 +16,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script>
-/*
+/**
Use `Polymer.IronOverlayBehavior` to implement an element that can be hidden or shown, and displays
on top of other content. It includes an optional backdrop, and can be used to implement a variety
of UI controls including dialogs and drop downs. Multiple overlays may be displayed at once.
@@ -137,6 +137,17 @@ context. You should place this element as a child of `<body>` whenever possible.
},
+/**
+ * Fired after the `iron-overlay` opens.
+ * @event iron-overlay-opened
+ */
+
+/**
+ * Fired after the `iron-overlay` closes.
+ * @event iron-overlay-closed {{canceled: boolean}} detail -
+ * canceled: True if the overlay was canceled.
+ */
+
listeners: {
'click': '_onClick',
'iron-resize': '_onIronResize'
@@ -418,15 +429,5 @@ context. You should place this element as a child of `<body>` whenever possible.
/** @polymerBehavior */
Polymer.IronOverlayBehavior = [Polymer.IronFitBehavior, Polymer.IronResizableBehavior, Polymer.IronOverlayBehaviorImpl];
-/*
- * Fired after the `iron-overlay` opens.
- * @event iron-overlay-opened
- */
-
-/*
- * Fired after the `iron-overlay` closes.
- * @event iron-overlay-closed {{canceled: boolean}} detail -
- * canceled: True if the overlay was canceled.
- */
</script>

Powered by Google App Engine
This is Rietveld 408576698