Skip to content

Commit

Permalink
Merge pull request #255 from flexpert/fix/remove-console-logs
Browse files Browse the repository at this point in the history
(fix) Remove console logs
  • Loading branch information
wwayne authored Feb 8, 2017
2 parents dc111e5 + 63fa548 commit 375989f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/decorators/isCapture.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@

export default function (target) {
target.prototype.isCapture = function (currentTarget) {
console.log('currentTarget', currentTarget)
const dataIsCapture = currentTarget.getAttribute('data-iscapture')
console.log(currentTarget.getAttribute('data-iscapture'), dataIsCapture)
return dataIsCapture && dataIsCapture === 'true' || this.props.isCapture || false
}
}

0 comments on commit 375989f

Please sign in to comment.