]> source.dussan.org Git - vaadin-core.git/commitdiff
Fixing links
authorManolo Carrasco <manolo@apache.org>
Mon, 14 Sep 2015 16:20:31 +0000 (18:20 +0200)
committerManolo Carrasco <manolo@apache.org>
Mon, 14 Sep 2015 16:58:33 +0000 (18:58 +0200)
README.md
demo/index.html

index a7abe4eb74fef5bcf7d1adc61886228c58665328..dd00c4d6f5ebbc4399b1ac8126dd746117c3889e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Vaadin Components
+# Vaadin Component
 
 [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) or [discuss on the vaadin.com forum](https://vaadin.com/forum/#!/category/9848927/)
 
@@ -10,7 +10,7 @@ View live examples and source code side-by-side for individual custom elements.
 
 | Component | Description |
 | --- | --- |
-| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](http://vaadin.github.io/components-examples/vaadin-grid/) &middot; [API](http://vaadin.github.io/components-apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
+| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](../../vaadin-grid/demo) &middot; [API](../doc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
 
 
 ### Quickstart
@@ -21,7 +21,6 @@ View live examples and source code side-by-side for individual custom elements.
  - [Data generated on-the-fly](http://jsfiddle.net/jounik/tvk1235r/)
  - [JSON data from a URL](http://jsfiddle.net/jounik/tLour4gv/)
 
-
 ### Installation
 
 We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP archive. The only difference between the options is the URL you use to import the necessary files into your HTML page.
index 4bb7a71463d42b48ca345cf21d3a4b1dae74f1a6..de86190042ea4aa1e7a34674885327a7f74874d3 100644 (file)
@@ -29,7 +29,7 @@
     xhr.onload = function (e) {
       if (xhr.readyState === 4) {
         if (xhr.status === 200) {
-          readme.innerHTML = marked(xhr.responseText);
+          readme.innerHTML = xhr.responseText;
           [].forEach.call(readme.querySelectorAll("pre"), function(pre) {
             var code = document.createElement("code");
             code.innerHTML = pre.innerHTML;