Skip to content

Commit

Permalink
✨ Release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Du Pont committed Mar 22, 2018
1 parent ab0a5ed commit acd0c06
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ On the Javascript-side it's again pretty simple... What you need to do is to cre
// Import Highway
import Highway from '@dogstudio/highway';

class Home extends Highway.renderer {
class Home extends Highway.Renderer {
[...]
}

Expand All @@ -121,7 +121,7 @@ Besides the required methods from **Highway** present in the `Highway.Renderer`
// Import Highway
import Highway from '@dogstudio/highway';

class Home extends Highway.renderer {
class Home extends Highway.Renderer {
onEnter() { }
onLeave() { }
onEnterCompleted() { }
Expand Down Expand Up @@ -292,6 +292,10 @@ const H = new Highway.Core({
- [ ] More Examples

## History
#### 1.1.2 (2018-03-22)

- Fix documentation

#### 1.1.1 (2018-03-17)

- Fix documentation
Expand Down
8 changes: 4 additions & 4 deletions examples/basic-css-transition/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ import Fade from './transitions/fade';
// More informations: https://github.com/Dogstudio/highway
new Highway.Core({
renderers: {
'home': Home,
'page': Page
home: Home,
page: Page
},
transitions: {
'home': Fade,
'page': Fade
home: Fade,
page: Fade
}
});

Expand Down
4 changes: 2 additions & 2 deletions examples/basic-google-analytics/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Page from './renderers/page';
// More informations: https://github.com/Dogstudio/highway
const H = new Highway.Core({
renderers: {
'home': Home,
'page': Page
home: Home,
page: Page
}
});

Expand Down
4 changes: 2 additions & 2 deletions examples/basic-menu-active/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Page from './renderers/page';
// More informations: https://github.com/Dogstudio/highway
const H = new Highway.Core({
renderers: {
'home': Home,
'page': Page
home: Home,
page: Page
}
});

Expand Down
4 changes: 2 additions & 2 deletions examples/basic-setup/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Page from './renderers/page';
// More informations: https://github.com/Dogstudio/highway
new Highway.Core({
renderers: {
'home': Home,
'page': Page
home: Home,
page: Page
}
});
})();
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dogstudio/highway",
"license": "MIT",
"version": "1.1.1",
"version": "1.1.2",
"description": "Highway helps you manage your page transitions",
"main": "dist/highway.js",
"unpkg": "dist/highway.min.js",
Expand Down

0 comments on commit acd0c06

Please sign in to comment.