diff --git a/lib/card/wrapper.js b/lib/card/wrapper.js index 23a6ccc..9119758 100644 --- a/lib/card/wrapper.js +++ b/lib/card/wrapper.js @@ -162,11 +162,6 @@ export default class CardWrapper extends Object { } nodeTapped(node, event) { - console.log('nodeTapped', node, this.isClickable(node)) - if (this.isClickable(node)) { - this.simulateClick(node, event) - return true - } if (this.tapNodes.has(node)) { let handler = this.tapNodes.get(node) handler(event, node) @@ -181,6 +176,10 @@ export default class CardWrapper extends Object { } } } + if (this.isClickable(node)) { + this.simulateClick(node, event) + return true + } return false }