aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni@jouni.me>2015-09-29 11:50:02 +0300
committerJouni Koivuviita <jouni@jouni.me>2015-09-29 11:50:02 +0300
commit457cd84023f8ac3287ce86ce10b3305eae45417f (patch)
tree352226535619353df9e4ac67c0eb92eb94a0a7df
parentf3a7d655922ffc73460e97800d4f899fb82f0531 (diff)
downloadvaadin-core-457cd84023f8ac3287ce86ce10b3305eae45417f.tar.gz
vaadin-core-457cd84023f8ac3287ce86ce10b3305eae45417f.zip
Update README.md
Fix resource paths and promote minified web components lite.
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index c57595a..639a4a3 100644
--- a/README.md
+++ b/README.md
@@ -76,19 +76,19 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
<!doctype html>
<html>
<head>
- <!-- Import Web Component polyfills and the components that you want -->
+ <!-- Import Web Component polyfills and all Vaadin Components -->
<!-- CDN -->
- <script src="https://cdn.vaadin.com/vaadin-components/latest/webcomponentsjs/webcomponents-lite.js"></script>
- <link href="https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/vaadin-grid.html" rel="import">
+ <script src="https://cdn.vaadin.com/vaadin-components/latest/webcomponentsjs/webcomponents-lite.min.js"></script>
+ <link href="https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/vaadin-components.html" rel="import">
<!-- Bower -->
- <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
+ <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link href="bower_components/vaadin-components/vaadin-components.html" rel="import"> -->
<!-- ZIP archive -->
- <!-- <script src="deps/vaadin-components/webcomponentsjs/webcomponents-lite.js"></script>
- <link href="deps/vaadin-components/vaadin-components/vaadin-components.html" rel="import"> -->
+ <!-- <script src="deps/webcomponentsjs/webcomponents-lite.min.js"></script>
+ <link href="deps/vaadin-components/vaadin-components.html" rel="import"> -->
</head>
<body>