| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 /* | 3 /* |
| 4 Use `Polymer.IronOverlayBehavior` to implement an element that can be hidden or
shown, and displays | 4 Use `Polymer.IronOverlayBehavior` to implement an element that can be hidden or
shown, and displays |
| 5 on top of other content. It includes an optional backdrop, and can be used to im
plement a variety | 5 on top of other content. It includes an optional backdrop, and can be used to im
plement a variety |
| 6 of UI controls including dialogs and drop downs. Multiple overlays may be displa
yed at once. | 6 of UI controls including dialogs and drop downs. Multiple overlays may be displa
yed at once. |
| 7 | 7 |
| 8 ### Closing and canceling | 8 ### Closing and canceling |
| 9 | 9 |
| 10 A dialog may be hidden by closing or canceling. The difference between close and
cancel is user | 10 A dialog may be hidden by closing or canceling. The difference between close and
cancel is user |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 * Fired after the `iron-overlay` opens. | 406 * Fired after the `iron-overlay` opens. |
| 407 * @event iron-overlay-opened | 407 * @event iron-overlay-opened |
| 408 */ | 408 */ |
| 409 | 409 |
| 410 /* | 410 /* |
| 411 * Fired after the `iron-overlay` closes. | 411 * Fired after the `iron-overlay` closes. |
| 412 * @event iron-overlay-closed {{canceled: boolean}} detail - | 412 * @event iron-overlay-closed {{canceled: boolean}} detail - |
| 413 * canceled: True if the overlay was canceled. | 413 * canceled: True if the overlay was canceled. |
| 414 */ | 414 */ |
| 415 | 415 |
| OLD | NEW |