diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-10-15 10:32:47 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-10-16 10:30:03 -0400 |
commit | 7df2f1905a1ec4727f00451f8d794aeb35ec4159 (patch) | |
tree | 35efc6c6d18f53e509e983c0f0aa4a30e0f8486d /ui/widgets/resizable.js | |
parent | 4d7c123c53339c3108982712b34815b3aabf010f (diff) | |
download | jquery-ui-7df2f1905a1ec4727f00451f8d794aeb35ec4159.tar.gz jquery-ui-7df2f1905a1ec4727f00451f8d794aeb35ec4159.zip |
Resizable: Remove mysterious helper dimension adjustments
Fixes #11113
Closes gh-1615
Diffstat (limited to 'ui/widgets/resizable.js')
-rw-r--r-- | ui/widgets/resizable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/widgets/resizable.js b/ui/widgets/resizable.js index 74e664c43..fcbab63ee 100644 --- a/ui/widgets/resizable.js +++ b/ui/widgets/resizable.js @@ -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", |