Skip to content

Spelling error #73

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

Merged
merged 1 commit into from
May 29, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/guide/transitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ With Vue.js' transition system you can apply automatic transition effects when e

With the directive `v-transition="my-transition"` applied, Vue will:

1. Try to find a JavaScript transtion definition registered either through `Vue.transition(id, def)` or passed in with the `transitions` option, with the id `"my-transition"`. If it finds it, it will use that definition object to perform the custom JavaScript based transition.
1. Try to find a JavaScript transition definition registered either through `Vue.transition(id, def)` or passed in with the `transitions` option, with the id `"my-transition"`. If it finds it, it will use that definition object to perform the custom JavaScript based transition.

2. If no custom JavaScript transition is found, it will automatically sniff whether the target element has CSS transitions or CSS animations applied, and add/remove the CSS classes at the appropriate times.

Expand Down Expand Up @@ -234,4 +234,4 @@ Then you can use it by providing the transition id to `v-transition`. Note this
<p v-transition="fade"></p>
```

Next: [Building Larger Apps](/guide/application.html).
Next: [Building Larger Apps](/guide/application.html).