Browse Source

#481: * call method

pull/496/head
RubaXa 9 years ago
parent
commit
d1069a97a7
  1. 4
      jquery.binding.js

4
jquery.binding.js

@ -46,8 +46,8 @@
sortable.destroy();
$el.removeData('sortable');
}
else if (options in sortable) {
retVal = sortable[sortable].apply(sortable, [].slice.call(arguments, 1));
else if (typeof sortable[options] === 'function') {
retVal = sortable[options].apply(sortable, [].slice.call(arguments, 1));
}
}
});

Loading…
Cancel
Save