Skip to content

Commit

Permalink
Release-v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan You committed Feb 25, 2014
1 parent 2a180ff commit 15c3c8b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "0.9.0",
"version": "0.9.1",
"main": "dist/vue.js",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
"authors": ["Evan You <[email protected]>"],
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "0.9.0",
"version": "0.9.1",
"main": "src/main.js",
"author": "Evan You <[email protected]>",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
Expand Down
4 changes: 2 additions & 2 deletions dist/vue.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Vue.js v0.9.0
Vue.js v0.9.1
(c) 2014 Evan You
License: MIT
*/
Expand Down Expand Up @@ -1450,7 +1450,7 @@ CompilerProto.addListener = function (listener) {
target
while (i--) {
target = delegator.targets[i]
if (e.target === target.el && target.handler) {
if (target.el.contains(e.target) && target.handler) {
target.handler(e)
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/vue.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "0.9.0",
"version": "0.9.1",
"author": {
"name": "Evan You",
"email": "[email protected]",
Expand Down

0 comments on commit 15c3c8b

Please sign in to comment.