Skip to content

Commit a728f32

Browse files
committed
0.12.14
1 parent ca1cb69 commit a728f32

File tree

4 files changed

+18
-19
lines changed

4 files changed

+18
-19
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.12.13
5-
dev_size: "234.52"
6-
min_size: "70.88"
7-
gz_size: "23.07"
4+
vue_version: 0.12.14
5+
dev_size: "234.51"
6+
min_size: "70.95"
7+
gz_size: "23.10"
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.12.13
3+
vue_version: 0.12.14

themes/vue/source/js/vue.js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vue.js v0.12.13
2+
* Vue.js v0.12.14
33
* (c) 2015 Evan You
44
* Released under the MIT License.
55
*/
@@ -170,7 +170,7 @@ return /******/ (function(modules) { // webpackBootstrap
170170
/***/ function(module, exports) {
171171

172172
/**
173-
* Check is a string starts with $ or _
173+
* Check if a string starts with $ or _
174174
*
175175
* @param {String} str
176176
* @return {Boolean}
@@ -6366,7 +6366,13 @@ return /******/ (function(modules) { // webpackBootstrap
63666366
while (i--) {
63676367
var option = el.options[i]
63686368
if (option !== defaultOption) {
6369-
el.removeChild(option)
6369+
var parentNode = option.parentNode
6370+
if (parentNode === el) {
6371+
parentNode.removeChild(option)
6372+
} else {
6373+
el.removeChild(parentNode)
6374+
i = el.options.length
6375+
}
63706376
}
63716377
}
63726378
buildOptions(el, value)
@@ -7410,7 +7416,7 @@ return /******/ (function(modules) { // webpackBootstrap
74107416
},
74117417

74127418
getContainedComponents: function () {
7413-
var vm = this.vm
7419+
var vm = this._host || this.vm
74147420
var start = this.start.nextSibling
74157421
var end = this.end
74167422

@@ -8498,13 +8504,6 @@ return /******/ (function(modules) { // webpackBootstrap
84988504
!value._isVue
84998505
) {
85008506
ob = new Observer(value)
8501-
} else if (true) {
8502-
if (_.isObject(value) && !_.isArray(value) && !_.isPlainObject(value)) {
8503-
_.warn(
8504-
'Unobservable object found in data: ' +
8505-
Object.prototype.toString.call(value)
8506-
)
8507-
}
85088507
}
85098508
if (ob && vm) {
85108509
ob.addVm(vm)

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

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

0 commit comments

Comments
 (0)