|
|
@ -84,8 +84,8 @@ |
|
|
|
options.onAdd = _bind(this, options.onAdd || noop); |
|
|
|
options.onAdd = _bind(this, options.onAdd || noop); |
|
|
|
options.onUpdate = _bind(this, options.onUpdate || noop); |
|
|
|
options.onUpdate = _bind(this, options.onUpdate || noop); |
|
|
|
options.onRemove = _bind(this, options.onRemove || noop); |
|
|
|
options.onRemove = _bind(this, options.onRemove || noop); |
|
|
|
options.onStartDragging = _bind(this, options.onStartDragging || noop); |
|
|
|
options.onStart = _bind(this, options.onStart || noop); |
|
|
|
options.onStopDragging = _bind(this, options.onStopDragging || noop); |
|
|
|
options.onEnd = _bind(this, options.onEnd || noop); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Export group name
|
|
|
|
// Export group name
|
|
|
@ -116,8 +116,8 @@ |
|
|
|
_on(el, 'add', options.onAdd); |
|
|
|
_on(el, 'add', options.onAdd); |
|
|
|
_on(el, 'update', options.onUpdate); |
|
|
|
_on(el, 'update', options.onUpdate); |
|
|
|
_on(el, 'remove', options.onRemove); |
|
|
|
_on(el, 'remove', options.onRemove); |
|
|
|
_on(el, 'start', options.onStartDragging); |
|
|
|
_on(el, 'start', options.onStart); |
|
|
|
_on(el, 'stop', options.onStopDragging); |
|
|
|
_on(el, 'stop', options.onEnd); |
|
|
|
|
|
|
|
|
|
|
|
_on(el, 'mousedown', this._onTapStart); |
|
|
|
_on(el, 'mousedown', this._onTapStart); |
|
|
|
_on(el, 'touchstart', this._onTapStart); |
|
|
|
_on(el, 'touchstart', this._onTapStart); |
|
|
@ -432,8 +432,8 @@ |
|
|
|
_off(el, 'add', options.onAdd); |
|
|
|
_off(el, 'add', options.onAdd); |
|
|
|
_off(el, 'update', options.onUpdate); |
|
|
|
_off(el, 'update', options.onUpdate); |
|
|
|
_off(el, 'remove', options.onRemove); |
|
|
|
_off(el, 'remove', options.onRemove); |
|
|
|
_off(el, 'start', options.onStartDragging); |
|
|
|
_off(el, 'start', options.onStart); |
|
|
|
_off(el, 'stop', options.onStopDragging); |
|
|
|
_off(el, 'stop', options.onEnd); |
|
|
|
_off(el, 'mousedown', this._onTapStart); |
|
|
|
_off(el, 'mousedown', this._onTapStart); |
|
|
|
_off(el, 'touchstart', this._onTapStart); |
|
|
|
_off(el, 'touchstart', this._onTapStart); |
|
|
|
_off(el, 'selectstart', this._onTapStart); |
|
|
|
_off(el, 'selectstart', this._onTapStart); |
|
|
|