Skip to content

Commit

Permalink
Fix #2897 (tooltip throw error in timeline)
Browse files Browse the repository at this point in the history
  • Loading branch information
100pah committed Mar 24, 2016
1 parent 60d341f commit fd2f2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/timeline/SliderTimelineView.js
Expand Up @@ -368,10 +368,10 @@ define(function (require) {

if (itemModel.get('tooltip')) {
el.dataIndex = dataIndex;
el.hostModel = tooltipHostModel;
el.tooltipFormatModel = tooltipHostModel;
}
else {
el.dataIndex = el.hostModel = null;
el.dataIndex = el.tooltipFormatModel = null;
}

}, this);
Expand Down

0 comments on commit fd2f2af

Please sign in to comment.