sortable

sortable

Hello, I had to change this line:
  $.Widget.prototype._setOption.apply(self, arguments);
to this one:
  $.Widget.prototype._setOption.apply(this, arguments);
after this commit:
due to error:
TypeError: Result of expression 'this.options' [undefined] is not an object.
reported when calling stuff like:
$('#items').sortable('option',{cursor:'crosshair'});