]> source.dussan.org Git - vaadin-core.git/commitdiff
Adding demos launch page
authorManolo Carrasco <manolo@apache.org>
Mon, 14 Sep 2015 16:20:20 +0000 (18:20 +0200)
committerManolo Carrasco <manolo@apache.org>
Mon, 14 Sep 2015 16:22:39 +0000 (18:22 +0200)
demo/index.html [new file with mode: 0644]

diff --git a/demo/index.html b/demo/index.html
new file mode 100644 (file)
index 0000000..4bb7a71
--- /dev/null
@@ -0,0 +1,57 @@
+<!doctype html>
+<html>
+<head>
+  <title>Vaadin Components Code Examples</title>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1" />
+  <script src="../../marked/lib/marked.js"></script>
+
+  <script src="../../code-example/vendor/prismjs/prism.js"></script>
+  <link rel="stylesheet" href="../../code-example/vendor/prismjs/prism.css">
+  <link rel="stylesheet" href="../../components-demo-resources/demo.css">
+
+  <script src="ga.js"></script>
+  <style type="text/css">
+    #readme code {
+      font-size: 12px;
+      max-height: none !important;
+    }
+  </style>
+</head>
+<body>
+
+  <section id="readme">
+  </section>
+  <script>
+    var readme = document.getElementById("readme");
+    var xhr = new XMLHttpRequest();
+    
+    xhr.onload = function (e) {
+      if (xhr.readyState === 4) {
+        if (xhr.status === 200) {
+          readme.innerHTML = marked(xhr.responseText);
+          [].forEach.call(readme.querySelectorAll("pre"), function(pre) {
+            var code = document.createElement("code");
+            code.innerHTML = pre.innerHTML;
+            var parent = pre.parentElement;
+            parent.insertBefore(code, pre);
+            parent.removeChild(pre);
+
+            code.className = "language-markup";
+            Prism.highlightElement(code);
+          });
+        } else {
+          console.error(xhr.statusText);
+        }
+      }
+    };
+    xhr.onerror = function (e) {
+      console.error(xhr.statusText);
+    };
+    xhr.open("GET", "../README.html");
+    xhr.send();
+
+  </script>
+
+</body>
+</html>