]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable: Remove mysterious helper dimension adjustments
authorScott González <scott.gonzalez@gmail.com>
Thu, 15 Oct 2015 14:32:47 +0000 (10:32 -0400)
committerScott González <scott.gonzalez@gmail.com>
Fri, 16 Oct 2015 14:30:03 +0000 (10:30 -0400)
Fixes #11113
Closes gh-1615

ui/widgets/resizable.js

index 74e664c4363880d048927c50bd382279d7d85383..fcbab63eef3b0b4da50b2eb46853c294bb9345b4 100644 (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",