Skip to content

Commit

Permalink
Remove temporary item click handler
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykoerber committed Apr 14, 2016
1 parent 20a3d4a commit df59190
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions src/mm-grid-item/mm-grid-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,6 @@
"_expansionChanged(model.expanded)",
],

listeners: {
"click" : "_itemClicked"
},

_itemClicked: function(e) {
var evt = Polymer.dom(e);
var detail = {
target: evt.rootTarget,
item: evt.localTarget,
model: evt.localTarget.model,
path: evt.path
};
this.fire('grid-item-clicked', detail);
},

_expansionChanged: function (expanded) {
this.toggleClass("expanded", !!expanded, this.$.carat);
},
Expand Down Expand Up @@ -102,4 +87,4 @@
}
});

})(window.Strand = window.Strand || {});
})(window.Strand = window.Strand || {});

0 comments on commit df59190

Please sign in to comment.