diff options
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", |