mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Resizable: Remove mysterious helper dimension adjustments
Fixes #11113 Closes gh-1615
This commit is contained in:
parent
4d7c123c53
commit
7df2f1905a
@ -690,8 +690,8 @@ $.widget( "ui.resizable", $.ui.mouse, {
|
||||
|
||||
this._addClass( this.helper, this._helper );
|
||||
this.helper.css( {
|
||||
width: this.element.outerWidth() - 1,
|
||||
height: this.element.outerHeight() - 1,
|
||||
width: this.element.outerWidth(),
|
||||
height: this.element.outerHeight(),
|
||||
position: "absolute",
|
||||
left: this.elementOffset.left + "px",
|
||||
top: this.elementOffset.top + "px",
|
||||
|
Loading…
Reference in New Issue
Block a user