diff options
author | Manolo Carrasco <manolo@apache.org> | 2015-09-17 21:22:27 +0200 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2015-09-17 21:22:27 +0200 |
commit | 3a09b166f8a69b34a11fefe57c272e563cedf209 (patch) | |
tree | 90bfe5b72f25b299fc2f03ad164a637167f5bd0a | |
parent | fe993897f3cd44d8f40d95be7b064d5c36d4eebb (diff) | |
download | vaadin-core-3a09b166f8a69b34a11fefe57c272e563cedf209.tar.gz vaadin-core-3a09b166f8a69b34a11fefe57c272e563cedf209.zip |
replacing version number with "latest"
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | tasks/cdn.js | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -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) · [Examples](https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/vaadin-grid/demo/) · [API](https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/vaadin-components/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. | +| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) · [Examples](https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/demo/) · [API](https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. | ### Quickstart @@ -54,7 +54,7 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP You can use Vaadin Components from CDN (see example below). This is especially convenient for services like JSFiddle, Codepen.io, etc. - `https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/vaadin-grid/vaadin-grid.html` + `https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/vaadin-grid.html` _*Note*: that we have a fragment in the url with the version to use, so you could for instance replace it with the snapshot version_ @@ -79,8 +79,8 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP <!-- Import Web Component polyfills and the components that you want --> <!-- CDN --> - <script src="https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/webcomponentsjs/webcomponents-lite.js"></script> - <link href="https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/vaadin-grid/vaadin-grid.html" rel="import"> + <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"> <!-- Bower --> <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script> diff --git a/tasks/cdn.js b/tasks/cdn.js index d81eef7..01359f2 100644 --- a/tasks/cdn.js +++ b/tasks/cdn.js @@ -32,7 +32,7 @@ gulp.task('cdn:stage-bower_components', function() { gulp.task('cdn:stage-vaadin-components', function() { return gulp.src(['README.md', 'LICENSE.html', 'vaadin-components.html', 'demo/*', 'apidoc/*'], {base:"."}) - .pipe(replace('https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/', '../../')) + .pipe(replace('https://cdn.vaadin.com/vaadin-components/latest/', '../../')) .pipe(gulp.dest(stagingPath + "/vaadin-components")); }); |