summaryrefslogtreecommitdiff
path: root/javascript/jquery/jquery-ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/jquery/jquery-ui.js')
-rw-r--r--javascript/jquery/jquery-ui.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/javascript/jquery/jquery-ui.js b/javascript/jquery/jquery-ui.js
index 0213552..e116590 100644
--- a/javascript/jquery/jquery-ui.js
+++ b/javascript/jquery/jquery-ui.js
@@ -11113,19 +11113,19 @@ $.widget( "ui.resizable", $.ui.mouse, {
this.position = { left: curleft, top: curtop };
this.size = this._helper ? {
- width: this.helper.width(),
- height: this.helper.height()
+ width: this.helper.outerWidth(),
+ height: this.helper.outerHeight()
} : {
- width: el.width(),
- height: el.height()
+ width: el.outerWidth(),
+ height: el.outerHeight()
};
this.originalSize = this._helper ? {
width: el.outerWidth(),
height: el.outerHeight()
} : {
- width: el.width(),
- height: el.height()
+ width: el.outerWidth(),
+ height: el.outerHeight()
};
this.sizeDiff = {
@@ -18703,4 +18703,4 @@ var widgetsTooltip = $.ui.tooltip;
-})); \ No newline at end of file
+}));