Skip to content

Commit f32573d

Browse files
authored
Merge pull request #18 from vuejs/2.0
2.0
2 parents d0e9bb6 + d9e343b commit f32573d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you are an experienced frontend developer and want to know how Vue compares t
1212

1313
## Getting Started
1414

15-
The easiest way to try out Vue.js is using the [JSFiddle Hello World example](https://jsfiddle.net/chrisvfritz/ng41aepx/). Feel free to open it in another tab and follow along as we go through some basic examples. If you prefer downloading / installing from a package manager, check out the [Installation](/guide/installation.html) page.
15+
The easiest way to try out Vue.js is using the [JSFiddle Hello World example](https://jsfiddle.net/chrisvfritz/4tpzm3e1/). Feel free to open it in another tab and follow along as we go through some basic examples. If you prefer downloading / installing from a package manager, check out the [Installation](/guide/installation.html) page.
1616

1717
## Declarative Rendering
1818

src/guide/transitioning-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ function generatePoints (stats) {
374374
</style>
375375
{% endraw %}
376376

377-
See [this fiddle](https://jsfiddle.net/chrisvfritz/fbvusejy/) for the complete code behind the above demo.
377+
See [this fiddle](https://jsfiddle.net/chrisvfritz/65gLu2b6/) for the complete code behind the above demo.
378378

379379
## Organizing Transitions into Components
380380

src/guide/transitions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ new Vue({
704704

705705
As it's transitioning between the "on" button and the "off" button, both buttons are rendered - one transitioning out while the other transitions in. This is the default behavior of `<transition>` - entering and leaving happens simultaneously.
706706

707-
Sometimes, this works great, like when transitioning items are absolutely positioned on top of each other:
707+
Sometimes this works great, like when transitioning items are absolutely positioned on top of each other:
708708

709709
{% raw %}
710710
<div id="no-mode-absolute-demo" class="demo">
@@ -790,7 +790,7 @@ new Vue({
790790
</style>
791791
{% endraw %}
792792

793-
Simultaneous entering and leaving transitions isn't always desirable though, so Vue offers some alternative **transition modes**:
793+
Simultaneous entering and leaving transitions aren't always desirable though, so Vue offers some alternative **transition modes**:
794794

795795
- `in-out`: New element transitions in first, then when complete, the current element transitions out.
796796

@@ -1247,7 +1247,7 @@ new Vue({
12471247

12481248
<p class="tip">One important note is that these FLIP transitions do not work with elements set to `display: inline`. As an alternative, you can use `display: inline-block` or place elements in a flex context.</p>
12491249

1250-
These FLIP animations are also not limited to a single axis. Items in a multidimensional grid can transitioned [just as easily](https://jsfiddle.net/chrisvfritz/a2ngorat/):
1250+
These FLIP animations are also not limited to a single axis. Items in a multidimensional grid can transitioned [just as easily](https://jsfiddle.net/chrisvfritz/sLrhk1bc/):
12511251

12521252
{% raw %}
12531253
<div id="sudoku-demo" class="demo">

0 commit comments

Comments
 (0)