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

Side by Side Diff: third_party/polymer/v1_0/components/iron-overlay-behavior/README.md

Issue 1269803005: Remove third_party/polymer from .gitignore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
(Empty)
1 # iron-overlay-behavior
2 Makes an element an overlay with an optional backdrop.
3
4 `iron-overlay-behavior` displays an element on top of other content. It starts o ut hidden and is
5 displayed by calling `open()` or setting the `opened` property to `true`. It may be closed by
6 calling `close()` or `cancel()`, or by setting the `opened` property to `true`.
7
8 The difference between `close()` and `cancel()` is user intent. `close()` genera lly implies that
9 the user acknowledged the content of the overlay. By default, it will cancel whe never the user taps
10 outside it or presses the escape key. This behavior can be turned off via the `n o-cancel-on-esc-key`
11 and the `no-cancel-on-outside-click` properties.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698