From 465217c9e880517e6d49a79e190da34a72ced1ba Mon Sep 17 00:00:00 2001 From: frankiefu Date: Wed, 30 Jul 2014 18:01:07 -0700 Subject: [PATCH] use addGesture/removeGesture --- core-selector.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-selector.html b/core-selector.html index 2841481..4c8f74b 100644 --- a/core-selector.html +++ b/core-selector.html @@ -270,11 +270,11 @@ }, addListener: function(node) { - node.addEventListener(this.activateEvent, this.activateListener); + PolymerGestures.addGesture(node, this.activateEvent, this.activateListener); }, removeListener: function(node) { - node.removeEventListener(this.activateEvent, this.activateListener); + PolymerGestures.removeGesture(node, this.activateEvent, this.activateListener); }, get selection() {