Skip to content

Commit 375989f

Browse files
authored
Merge pull request #255 from flexpert/fix/remove-console-logs
(fix) Remove console logs
2 parents dc111e5 + 63fa548 commit 375989f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/decorators/isCapture.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44

55
export default function (target) {
66
target.prototype.isCapture = function (currentTarget) {
7-
console.log('currentTarget', currentTarget)
87
const dataIsCapture = currentTarget.getAttribute('data-iscapture')
9-
console.log(currentTarget.getAttribute('data-iscapture'), dataIsCapture)
108
return dataIsCapture && dataIsCapture === 'true' || this.props.isCapture || false
119
}
1210
}

0 commit comments

Comments
 (0)