Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pdevty/polymer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/bower_components/iron-media-query/README.md')
-rw-r--r--static/bower_components/iron-media-query/README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/static/bower_components/iron-media-query/README.md b/static/bower_components/iron-media-query/README.md
new file mode 100644
index 0000000..f577b3c
--- /dev/null
+++ b/static/bower_components/iron-media-query/README.md
@@ -0,0 +1,11 @@
+# iron-media-query
+
+`iron-media-query` can be used to data bind to a CSS media query.
+The `query` property is a bare CSS media query.
+The `query-matches` property is a boolean representing if the page matches that media query.
+
+Example:
+
+```html
+<iron-media-query query="(min-width: 600px)" query-matches="{{queryMatches}}"></iron-media-query>
+```