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

Unified Diff: pkg/polymer/lib/elements/polymer-anchor-point/docs.json

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/lib/elements/polymer-anchor-point/docs.json
diff --git a/pkg/polymer/lib/elements/polymer-anchor-point/docs.json b/pkg/polymer/lib/elements/polymer-anchor-point/docs.json
new file mode 100644
index 0000000000000000000000000000000000000000..3c842a00dbd560597481b4a60055a0987daa7ab9
--- /dev/null
+++ b/pkg/polymer/lib/elements/polymer-anchor-point/docs.json
@@ -0,0 +1,72 @@
+{
+ "project": {
+ "name": "Docs",
+ "description": "Docs"
+ },
+ "files": {
+ "..\\..\\polymer-anchor-point\\polymer-anchor-point.html": {
+ "name": "..\\..\\polymer-anchor-point\\polymer-anchor-point.html",
+ "modules": {
+ "Polymer Elements": 1
+ },
+ "classes": {
+ "polymer-anchor-point": 1
+ },
+ "fors": {},
+ "namespaces": {}
+ }
+ },
+ "modules": {
+ "Polymer Elements": {
+ "name": "Polymer Elements",
+ "submodules": {},
+ "classes": {
+ "polymer-anchor-point": 1
+ },
+ "fors": {},
+ "namespaces": {},
+ "tag": "module",
+ "file": "..\\..\\polymer-anchor-point\\polymer-anchor-point.html",
+ "line": 5
+ }
+ },
+ "classes": {
+ "polymer-anchor-point": {
+ "name": "polymer-anchor-point",
+ "shortname": "polymer-anchor-point",
+ "classitems": [],
+ "plugins": [],
+ "extensions": [],
+ "plugin_for": [],
+ "extension_for": [],
+ "module": "Polymer Elements",
+ "namespace": "",
+ "file": "..\\..\\polymer-anchor-point\\polymer-anchor-point.html",
+ "line": 5,
+ "description": "polymer-anchor-point can be used to align two nodes. The node to\nuse as the reference position is the anchor node, and the node to\nbe positioned is the target node.\n\nBoth the anchor and target nodes should have an anchor-point\nattribute. The target node is positioned such that its anchor-point\naligns with the anchor node's anchor-point.\n\nNote: The target node is positioned with position: fixed, and will not\nscroll with the page.\n\nNote: This is meant to polyfill the `<dialog>` positioning behavior when\nan anchor is provided. Spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/commands.html#the-dialog-element\n\nExample:\n\n <div id=\"anchor\" anchor-point=\"bottom left\"></div>\n <div id=\"target\" anchor-point=\"top left\"></div>\n <polymer-anchor-point id=\"anchor-helper\"></polymer-anchor-point>\n <script>\n var helper = document.querySelector('#anchor-helper');\n helper.anchor = document.querySelector('#anchor');\n helper.target = document.querySelector('#target');\n helper.apply();\n </script>"
+ }
+ },
+ "classitems": [
+ {
+ "file": "..\\..\\polymer-anchor-point\\polymer-anchor-point.html",
+ "line": 156,
+ "description": "The node to be positioned.",
+ "itemtype": "attribute",
+ "name": "target",
+ "type": "Node",
+ "class": "polymer-anchor-point",
+ "module": "Polymer Elements"
+ },
+ {
+ "file": "..\\..\\polymer-anchor-point\\polymer-anchor-point.html",
+ "line": 162,
+ "description": "The node to align the target to.",
+ "itemtype": "attribute",
+ "name": "anchor",
+ "type": "node",
+ "class": "polymer-anchor-point",
+ "module": "Polymer Elements"
+ }
+ ],
+ "warnings": []
+}
« no previous file with comments | « pkg/polymer/lib/elements/polymer-anchor-point/demo.html ('k') | pkg/polymer/lib/elements/polymer-anchor-point/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698