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 comment:1
Changed March 10, 2014 12:29PM UTC by comment:2
| resolution: | → notabug |
|---|---|
| status: | new → closed |
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.
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; }