Browse Source

Fixes #2918: Remove usages of elementsCensor. (#2947)

gemini
Steven Jones 7 years ago
committed by yotamberk
parent
commit
fc082d3334
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/timeline/component/CustomTime.js

+ 2
- 2
lib/timeline/component/CustomTime.js View File

@ -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();

Loading…
Cancel
Save