diff --git a/lib/timeline/component/CustomTime.js b/lib/timeline/component/CustomTime.js index 6aa6502a..e3e60dc1 100644 --- a/lib/timeline/component/CustomTime.js +++ b/lib/timeline/component/CustomTime.js @@ -217,7 +217,7 @@ CustomTime.prototype._onDrag = function (event) { this.body.emitter.emit('timechange', { id: this.options.id, time: new Date(this.customTime.valueOf()), - event: util.elementsCensor(event) + event: event }); event.stopPropagation(); @@ -235,7 +235,7 @@ CustomTime.prototype._onDragEnd = function (event) { this.body.emitter.emit('timechanged', { id: this.options.id, time: new Date(this.customTime.valueOf()), - event: util.elementsCensor(event) + event: event }); event.stopPropagation();