Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add slideout events #61

Merged
merged 12 commits into from
Apr 21, 2015
Prev Previous commit
Next Next commit
Update events documentation.
  • Loading branch information
pazguille committed Mar 24, 2015
commit 4ecb4ffa5448ab90ac737efce0d1bd7e404acb32
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,14 @@ var slideout = new Slideout({
```

### Slideout.open();
Opens the slideout menu. It emits `beforeopen`, `open` and `translate` events.
Opens the slideout menu. It emits `beforeopen` and `open` events.

```js
slideout.open();
```

### Slideout.close();
Closes the slideout menu. It emits `beforeclose`, `close` and `translate` events.
Closes the slideout menu. It emits `beforeclose` and `close` events.

```js
slideout.close();
Expand Down