Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/node_modules/d3-drag/src/
Upload File :
Current File : /home/emeraadmin/public_html/node_modules/d3-drag/src/event.js

export default function DragEvent(target, type, subject, id, active, x, y, dx, dy, dispatch) {
  this.target = target;
  this.type = type;
  this.subject = subject;
  this.identifier = id;
  this.active = active;
  this.x = x;
  this.y = y;
  this.dx = dx;
  this.dy = dy;
  this._ = dispatch;
}

DragEvent.prototype.on = function() {
  var value = this._.on.apply(this._, arguments);
  return value === this._ ? this : value;
};