Skip to content

Commit d10f441

Browse files
committed
0.11.7
1 parent 52e066f commit d10f441

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

source/guide/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
title: Installation
22
type: guide
33
order: 1
4-
vue_version: 0.11.6
5-
dev_size: 191.99
6-
min_size: 59.30
7-
gz_size: 19.43
4+
vue_version: 0.11.7
5+
dev_size: 192.13
6+
min_size: 59.33
7+
gz_size: 19.45
88
---
99

1010
> **Compatibility Note:** Vue.js does not support IE8 and below.

themes/vue/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
google_analytics: UA-46852172-1
22
root_domain: vuejs.org
3-
vue_version: 0.11.6
3+
vue_version: 0.11.7

themes/vue/source/js/vue.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Vue.js v0.11.6
2+
* Vue.js v0.11.7
33
* (c) 2015 Evan You
44
* Released under the MIT License.
55
*/
@@ -6321,17 +6321,20 @@ return /******/ (function(modules) { // webpackBootstrap
63216321
vm.$before(ref)
63226322
}
63236323
} else {
6324+
// make sure to insert before the comment node if
6325+
// the vms are block instances
6326+
var nextEl = targetNext._blockStart || targetNext.$el
63246327
if (vm._reused) {
63256328
// this is the vm we are actually in front of
63266329
currentNext = findNextVm(vm, ref)
63276330
// we only need to move if we are not in the right
63286331
// place already.
63296332
if (currentNext !== targetNext) {
6330-
vm.$before(targetNext.$el, null, false)
6333+
vm.$before(nextEl, null, false)
63316334
}
63326335
} else {
63336336
// new instance, insert to existing next
6334-
vm.$before(targetNext.$el)
6337+
vm.$before(nextEl)
63356338
}
63366339
}
63376340
vm._new = false

themes/vue/source/js/vue.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)