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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-overlay-behavior/iron-overlay-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 /* 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698