diff options
author | Jouni Koivuviita <jouni@jouni.me> | 2015-09-29 11:50:02 +0300 |
---|---|---|
committer | Jouni Koivuviita <jouni@jouni.me> | 2015-09-29 11:50:02 +0300 |
commit | 457cd84023f8ac3287ce86ce10b3305eae45417f (patch) | |
tree | 352226535619353df9e4ac67c0eb92eb94a0a7df /README.md | |
parent | f3a7d655922ffc73460e97800d4f899fb82f0531 (diff) | |
download | vaadin-core-457cd84023f8ac3287ce86ce10b3305eae45417f.tar.gz vaadin-core-457cd84023f8ac3287ce86ce10b3305eae45417f.zip |
Update README.md
Fix resource paths and promote minified web components lite.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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> |