Browse Source

#545: + shortcut for set options

pull/560/merge
RubaXa 9 years ago
parent
commit
52dc6fa86a
  1. 3
      jquery.binding.js

3
jquery.binding.js

@ -49,6 +49,9 @@
else if (typeof sortable[options] === 'function') {
retVal = sortable[options].apply(sortable, [].slice.call(arguments, 1));
}
else if (options in sortable.options) {
retVal = sortable.option.apply(sortable, arguments);
}
}
});

Loading…
Cancel
Save