From fc082d3334117ece95ad4cc8f8c027f0d0ca282b Mon Sep 17 00:00:00 2001 From: Steven Jones Date: Wed, 5 Apr 2017 20:45:23 +0100 Subject: [PATCH] Fixes #2918: Remove usages of elementsCensor. (#2947) --- lib/timeline/component/CustomTime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();