Skip to content

Commit 7df2f19

Browse files
committed
Resizable: Remove mysterious helper dimension adjustments
Fixes #11113 Closes jquerygh-1615
1 parent 4d7c123 commit 7df2f19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/widgets/resizable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,8 @@ $.widget( "ui.resizable", $.ui.mouse, {
690690

691691
this._addClass( this.helper, this._helper );
692692
this.helper.css( {
693-
width: this.element.outerWidth() - 1,
694-
height: this.element.outerHeight() - 1,
693+
width: this.element.outerWidth(),
694+
height: this.element.outerHeight(),
695695
position: "absolute",
696696
left: this.elementOffset.left + "px",
697697
top: this.elementOffset.top + "px",

0 commit comments

Comments
 (0)