1.7 - Sortable revert / placeholder problem + fix

1.7 - Sortable revert / placeholder problem + fix


Hi all,
I update all my work from 1.2.6 / 1.5.3 to the latest release 1.3.2 /
1.7. All works fine
and faster, greetings to the dev team ;-)
I have found a problem in Sortable revert option, the placeholder
margin left / top don't
change the original position calcing.
I've include these parameters in ui.sortable.js and the problem is
solved
Hope that will help,
Regards
Jeff
Tested in FF 3+ and Safari 3+
( line 288 - function _mouseStop )
.....
if(this.options.revert) {
var self = this;
var cur = self.placeholder.offset();
self.reverting = true;
//****
var margin_left=parseInt(self.placeholder.css('marginLeft'),10);
var margin_top=parseInt(self.placeholder.css('marginTop'),10);
$(this.helper).animate({
left: cur.left - margin_left .......... ,
top: cur.top - margin_top ...........
    }, parseInt(this.options.revert, 10) || 500, function() { self._clear
(event); });
//****