Search and Top Navigation
#9667 closed bug (duplicate)
Opened November 19, 2013 10:53AM UTC
Closed November 19, 2013 12:58PM UTC
Resizable with helper loses 1px
| Reported by: | kuz | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | none | 
| Component: | ui.resizable | Version: | 1.10.3 | 
| Keywords: | Cc: | ||
| Blocked by: | Blocking: | 
Description
Resize with helper via side handle causes losing 1px from the other side (Example http://jqueryui.com/resizable/#helper - Try to resize width with handle-e and you will lose 1px height. Same in other direction: resizing handle-s steals 1px from width).
The reason is in defining height and width of the helper in _renderProxy function in jquery.ui.resizable.js.
  this.helper.addClass(this._helper).css({
    width: this.element.outerWidth() - 1,
    height: this.element.outerHeight() - 1,
    position: "absolute",
    left: this.elementOffset.left +"px",
    top: this.elementOffset.top +"px",
    zIndex: ++o.zIndex //TODO: Don't modify option
  });
Posible solution is to remove decreasing of outer-size in this part.
Attachments (0)
Change History (1)
Changed November 19, 2013 12:58PM UTC by comment:1
| resolution: | → duplicate | 
|---|---|
| status: | new → closed | 
Duplicate of #9547.