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

Commit

Permalink
fix core-drag-drop's imperative use of track events by including Poly…
Browse files Browse the repository at this point in the history
…merGestures.addGesture call.
  • Loading branch information
sorvell committed Jul 23, 2014
1 parent 054d07e commit 4752217
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core-drag-drop.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@

attached: function() {
var listen = function(event, handler) {
PolymerGestures.addGesture(this, event);
this.parentNode.addEventListener(event, this[handler].bind(this));
}.bind(this);
//
Expand Down

1 comment on commit 4752217

@Lukas815
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line makes me trouble when I tried to test the designer tool on local machine as descriped on polymer's tools & testing page...

Please sign in to comment.