Resizable: Remove mysterious helper dimension adjustments

Fixes #11113
Closes gh-1615
This commit is contained in:
Scott González 2015-10-15 10:32:47 -04:00
parent 4d7c123c53
commit 7df2f1905a

View File

@ -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",