Browse Source

Merge branch 'dev' of github.com:RubaXa/Sortable into dev

pull/739/head
RubaXa 9 years ago
parent
commit
01a2991548
  1. 3
      react-sortable-mixin.js

3
react-sortable-mixin.js vendored

@ -87,6 +87,9 @@
emitEvent = function (/** string */type, /** Event */evt) { emitEvent = function (/** string */type, /** Event */evt) {
var method = options[type]; var method = options[type];
if (method && typeof method === "string") {
method = this[method];
}
method && typeof method === "function" && method.call(this, evt, this._sortableInstance); method && typeof method === "function" && method.call(this, evt, this._sortableInstance);
}.bind(this); }.bind(this);

Loading…
Cancel
Save