Make sure remove happens on the right events, not on an undefined var

This commit is contained in:
Justin F. Hallett 2015-02-09 11:07:46 -07:00
parent 5f71093236
commit c1c68f89fe

View File

@ -234,8 +234,8 @@
});
},
remove: function(c) {
c.$table.off(chart.event);
remove: function(c, wo) {
c.$table.off(wo.chart_event);
}
};
@ -269,7 +269,7 @@
},
remove: function(table, c, wo) {
chart.remove(c);
chart.remove(c, wo);
}
});