Skip to content

Commit

Permalink
update docs version references to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
erquhart committed Oct 10, 2017
1 parent 2324f08 commit f811699
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CMS.registerPreviewStyle(file);
**Example:**
```html
// index.html
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
<script>
CMS.registerPreviewStyle("/example.css");
</script>
Expand Down Expand Up @@ -67,7 +67,7 @@ Registers a template for a collection.
**Example:**

```html
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
<script>
var PostPreview = createClass({
render: function() {
Expand Down
4 changes: 2 additions & 2 deletions docs/extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Param | Type | Description
**Example:**

```html
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
<script>
var CategoriesControl = createClass({
handleChange: function(e) {
Expand Down Expand Up @@ -75,7 +75,7 @@ Register a block level component for the Markdown editor:
**Example:**

```html
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
<script>
CMS.registerEditorComponent({
// Internal id of the component
Expand Down
4 changes: 2 additions & 2 deletions docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ The admin interface is a single-page app with the entry point stored in a static
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>

<link rel="stylesheet" href="https://unpkg.com/netlify-cms@~0.4/dist/cms.css" />
<link rel="stylesheet" href="https://unpkg.com/netlify-cms@~0.5/dist/cms.css" />

</head>
<body>
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
</body>
</html>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ The first file, `admin/index.html`, is the entry point for the Netlify CMS admin
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>

<link rel="stylesheet" href="https://unpkg.com/netlify-cms@~0.4/dist/cms.css" />
<link rel="stylesheet" href="https://unpkg.com/netlify-cms@~0.5/dist/cms.css" />

</head>
<body>
<script src="https://unpkg.com/netlify-cms@~0.4/dist/cms.js"></script>
<script src="https://unpkg.com/netlify-cms@~0.5/dist/cms.js"></script>
</body>
</html>
```
Expand Down

0 comments on commit f811699

Please sign in to comment.