Browse Source

proper event names

pull/51/head
skaczorowski 11 years ago
parent
commit
2fa95f8d8b
  1. 12
      Sortable.js
  2. 2
      Sortable.min.js
  3. 8
      index.html

12
Sortable.js

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

2
Sortable.min.js vendored

File diff suppressed because one or more lines are too long

8
index.html

@ -314,8 +314,8 @@ sort.destroy();
onAdd: function (evt){ console.log('onAdd.foo:', evt.item); }, onAdd: function (evt){ console.log('onAdd.foo:', evt.item); },
onUpdate: function (evt){ console.log('onUpdate.foo:', evt.item); }, onUpdate: function (evt){ console.log('onUpdate.foo:', evt.item); },
onRemove: function (evt){ console.log('onRemove.foo:', evt.item); }, onRemove: function (evt){ console.log('onRemove.foo:', evt.item); },
onStartDragging:function(evt){ console.log('onStartDragging.foo:',evt.item);}, onStart:function(evt){ console.log('onStart.foo:',evt.item);},
onStopDragging: function(evt){ console.log('onStopDragging.foo:',evt.item);} onEnd: function(evt){ console.log('onEnd.foo:',evt.item);}
}); });
new Sortable(bar, { new Sortable(bar, {
@ -323,8 +323,8 @@ sort.destroy();
onAdd: function (evt){ console.log('onAdd.bar:', evt.item); }, onAdd: function (evt){ console.log('onAdd.bar:', evt.item); },
onUpdate: function (evt){ console.log('onUpdate.bar:', evt.item); }, onUpdate: function (evt){ console.log('onUpdate.bar:', evt.item); },
onRemove: function (evt){ console.log('onRemove.bar:', evt.item); }, onRemove: function (evt){ console.log('onRemove.bar:', evt.item); },
onStartDragging:function(evt){ console.log('onStartDragging.foo:',evt.item);}, onStart:function(evt){ console.log('onStart.foo:',evt.item);},
onStopDragging: function(evt){ console.log('onStopDragging.foo:',evt.item);} onEnd: function(evt){ console.log('onEnd.foo:',evt.item);}
}); });

Loading…
Cancel
Save