Skip to content

Commit

Permalink
Update "dist"
Browse files Browse the repository at this point in the history
  • Loading branch information
th0r committed Feb 9, 2014
1 parent 047fadf commit 7bb8ef1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion dist/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -2892,7 +2892,11 @@ module.exports = {
style : require('./style'),

attr: function (value) {
this.el.setAttribute(this.arg, value)
if (value || value === 0) {
this.el.setAttribute(this.arg, value)
} else {
this.el.removeAttribute(this.arg)
}
},

text: function (value) {
Expand Down

0 comments on commit 7bb8ef1

Please sign in to comment.