Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
berndartmueller committed Aug 27, 2020
1 parent e8c7dc2 commit 414ed36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ slider.mount();
- [Virchual](#virchual)

- [Virchual#mount](#virchualmount)
- [Virchual#unmount](#virchualunmount)
- [Virchual#on](#virchualon)
- [Virchual#off](#virchualoff)
- [Virchual#prev](#virchualprev)
- [Virchual#next](#virchualnext)
- [Virchual#destroy](#virchualdestroy)

## Virchual

Expand Down Expand Up @@ -153,8 +153,8 @@ instance.on('mount', () => {

// multiple events can be defined by seperating with a whitespace

instance.on('mount unmounted', () => {
console.log('Slider mounted/unmounted.');
instance.on('mount destroy', () => {
console.log('Slider mounted/destroy.');
});
```

Expand All @@ -173,7 +173,7 @@ instance.off('mount');

// multiple events can be defined by seperating with a whitespace

instance.off('mount unmounted');
instance.off('mount destroy');
```

### Virchual#prev
Expand Down

0 comments on commit 414ed36

Please sign in to comment.