Skip to main content

Search and Top Navigation

#9908 closed bug (notabug)

Opened March 10, 2014 06:28AM UTC

Closed March 10, 2014 12:29PM UTC

Last modified March 10, 2014 01:15PM UTC

clerical error?

Reported by: tim Owned by:
Priority: minor Milestone: none
Component: ui.resizable Version: 1.10.4
Keywords: Cc:
Blocked by: Blocking:
Description
resize: function( event ) {
	......
	......
	hoset = Math.abs( (that._helper ? that.offset.top - cop.top : (that.offset.top - co.top)) + that.sizeDiff.height );
	......
	......
},

should be

hoset = Math.abs( (that._helper ? that.offset.top - cop.top : (that.offset.top - cop.top)) + that.sizeDiff.height );
Attachments (0)
Change History (3)

Changed March 10, 2014 10:02AM UTC by tim comment:1

in the same method, another clerical error may be

if(isParent && isOffsetRelative) {
    woset -= that.parentData.left;
}
>
if(isParent && isOffsetRelative) {
    woset -= that.parentData.left;
    hoset -= that.parentData.top;
}

Changed March 10, 2014 12:29PM UTC by scottgonzalez comment:2

resolution: → notabug
status: newclosed

These sound like questions, not bug reports. If you'd like to report a bug, please describe the expected and actual behavior, along with a reduced test case showing the problem.

Changed March 10, 2014 01:15PM UTC by tim comment:3

It seems the issue I had was fixed with patch c03cb807 which is a fix for #7485 .