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

Unified Diff: polymer_1.0.4/bower_components/iron-doc-viewer/demo/index.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 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 side-by-side diff with in-line comments
Download patch
Index: polymer_1.0.4/bower_components/iron-doc-viewer/demo/index.html
diff --git a/polymer_1.0.4/bower_components/iron-doc-viewer/demo/index.html b/polymer_1.0.4/bower_components/iron-doc-viewer/demo/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..688a7b7f34ef2a44707056b40aa78e6f4fb55a60
--- /dev/null
+++ b/polymer_1.0.4/bower_components/iron-doc-viewer/demo/index.html
@@ -0,0 +1,126 @@
+<!--
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+-->
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
+ <title></title>
+
+ <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
+ <link rel="import" href="../../polymer/polymer.html">
+ <link rel="import" href="../iron-doc-viewer.html">
+
+ <style>
+ body {
+ margin: 16px;
+ }
+
+ iron-doc-viewer {
+ margin: 0 auto;
+ max-width: 48em;
+ }
+ </style>
+ </head>
+ <body>
+
+ <!-- You can also bake documentation into the doc viewer: -->
+ <iron-doc-viewer></iron-doc-viewer>
+
+ <script>
+ var descriptor = {
+ "properties": [
+ {
+ "name": "marshal",
+ "type": "Function",
+ "desc": "Renders this element into static HTML for offline use.\n\nThis is mostly useful for debugging and one-off documentation generation.\nIf you want to integrate doc generation into your build process, you\nprobably want to be calling `hydrolysis.Analyzer.analyze()` directly.\n",
+ "params": [],
+ "function": true,
+ "return": {
+ "type": "string",
+ "desc": "HTML for this element with all state baked in.\n "
+ }
+ },
+ {
+ "name": "src",
+ "type": "string",
+ "desc": "The URL to an import that declares (or transitively imports) the\nelements that you wish to see documented.\n\nIf the URL is relative, it will be resolved relative to the master\ndocument.\n\nIf you change this value after the `&lt;iron-doc-viewer&gt;` has been\ninstantiated, you must call `load()`.\n ",
+ "published": true
+ },
+ {
+ "name": "transitive",
+ "type": "boolean",
+ "desc": "Whether _all_ dependencies should be loaded and documented.\n\nTurning this on will probably slow down the load process dramatically.\n ",
+ "published": true
+ },
+ {
+ "name": "_activeElement",
+ "type": "!hydrolysis.ElementDescriptor",
+ "desc": "The currently displayed element.\n",
+ "published": true,
+ "private": true
+ },
+ {
+ "name": "_analyzer",
+ "type": "!hydrolysis.Analyzer",
+ "desc": "The hydrolysis analyzer.\n",
+ "published": true,
+ "private": true
+ },
+ {
+ "name": "_analyzerChanged",
+ "type": "Function",
+ "params": [],
+ "private": true,
+ "function": true
+ },
+ {
+ "name": "_loading",
+ "type": "Object",
+ "desc": "Whether the analyzer is loading source. ",
+ "published": true,
+ "private": true
+ },
+ {
+ "name": "_loadingChanged",
+ "type": "Function",
+ "params": [],
+ "private": true,
+ "function": true
+ },
+ {
+ "name": "_onTapNavItem",
+ "type": "Function",
+ "desc": "Activates the element that the user selected.\n",
+ "params": [
+ {
+ "name": "event",
+ "type": "!Event",
+ "desc": null
+ }
+ ],
+ "private": true,
+ "function": true
+ },
+ {
+ "name": "enableCustomStyleProperties",
+ "type": "boolean",
+ "private": true,
+ "configuration": true
+ }
+ ],
+ "is": "doc-demo",
+ "desc": "This is an example of how `iron-doc-viewer` will render various types of\ninformation. You can use it as a style guide to see how various data will be\nrepresented. Markdown is used to format descriptive text throughout.\n\n# Level 1 Heading\n\nThis is a level one heading. **Bold text** and *italic text* are represented\nappropriately. [Links](#) have black underlines.\n\n## Level 2 Heading\n\nThis is a level two heading. `inline code` can be represented.\n\n <html>\n <p>This is a code block. Its syntax is highlighted automatically.</p>\n </html>\n\n### Level 3 Heading\n\nLists can also be used as you'd expect:\n\n* Unordered Lists\n * With Nesting\n* Or without nesting\n\nYou can also use ordered lists:\n\n1. First item\n2. Second item\n\n#### Level 4 Heading\n\nHeadings can be used all the way down to level 5.\n\n##### Level 5 Heading\n\nThis concludes our quick rundown of the various styles that you can commonly use."
+ }
+
+ document.querySelector('iron-doc-viewer').descriptor = descriptor;
+ </script>
+ </body>
+</html>
« no previous file with comments | « polymer_1.0.4/bower_components/iron-doc-viewer/bower.json ('k') | polymer_1.0.4/bower_components/iron-doc-viewer/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698