Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
update to use Polymer.addEventListener/removeEventListener
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Jul 31, 2014
1 parent 465217c commit 39974b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core-selector.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@
},

addListener: function(node) {
PolymerGestures.addGesture(node, this.activateEvent, this.activateListener);
Polymer.addEventListener(node, this.activateEvent, this.activateListener);
},

removeListener: function(node) {
PolymerGestures.removeGesture(node, this.activateEvent, this.activateListener);
Polymer.removeEventListener(node, this.activateEvent, this.activateListener);
},

get selection() {
Expand Down

0 comments on commit 39974b4

Please sign in to comment.