Browse Source

Merge pull request #566 from medonja/master

Bugfix in jquery.binding.js
pull/571/head
Lebedev Konstantin 9 years ago
parent
commit
4524cd8ff7
  1. 6
      jquery.binding.js

6
jquery.binding.js

@ -28,7 +28,7 @@
*/ */
$.fn.sortable = function (options) { $.fn.sortable = function (options) {
var retVal; var retVal;
var callArgs = arguments;
this.each(function () { this.each(function () {
var $el = $(this), var $el = $(this),
sortable = $el.data('sortable'); sortable = $el.data('sortable');
@ -47,10 +47,10 @@
$el.removeData('sortable'); $el.removeData('sortable');
} }
else if (typeof sortable[options] === 'function') { else if (typeof sortable[options] === 'function') {
retVal = sortable[options].apply(sortable, [].slice.call(arguments, 1)); retVal = sortable[options].apply(sortable, [].slice.call(callArgs, 1));
} }
else if (options in sortable.options) { else if (options in sortable.options) {
retVal = sortable.option.apply(sortable, arguments); retVal = sortable.option.apply(sortable, callArgs);
} }
} }
}); });

Loading…
Cancel
Save