From 7df2f1905a1ec4727f00451f8d794aeb35ec4159 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 15 Oct 2015 10:32:47 -0400 Subject: Resizable: Remove mysterious helper dimension adjustments Fixes #11113 Closes gh-1615 --- ui/widgets/resizable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/widgets/resizable.js') 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", -- cgit v1.2.3