| 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>
|
|
|