Skip to content

Commit

Permalink
Merge 6e632d8 into ffc7711
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarCruz committed Jun 9, 2015
2 parents ffc7711 + 6e632d8 commit 410d841
Show file tree
Hide file tree
Showing 3 changed files with 580 additions and 161 deletions.
5 changes: 5 additions & 0 deletions lib/browser/tag/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ function isFunction(v) {
return typeof v === 'function' || false // avoid IE problems
}

// avoid `if(undefined=x)` effect, more uglify friendly
function isUndef(v) {
return v === void 0 // eslint-disable-line no-void
}

function remAttr(dom, name) {
dom.removeAttribute(name)
}
Expand Down
Loading

0 comments on commit 410d841

Please sign in to comment.