Skip to content

Commit

Permalink
event fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Dec 29, 2014
1 parent 4400a62 commit 302d977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/js/PivotView.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ PivotView.prototype.renderRawData = function (data) {
if (rawData[y][x].style) td.setAttribute("style", rawData[y][x].style);

// add handlers
td.addEventListener("click", (function (x, y, cell) {
td.addEventListener(CLICK_EVENT, (function (x, y, cell) {
return function (event) {
_._cellClickHandler.call(
_, cell, x, y, event, info.drillThroughHandler
Expand Down

0 comments on commit 302d977

Please sign in to comment.