diff options
Diffstat (limited to 'ui/widgets/resizable.js')
-rw-r--r-- | ui/widgets/resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/resizable.js b/ui/widgets/resizable.js index 36dd12514..cb0b1b11d 100644 --- a/ui/widgets/resizable.js +++ b/ui/widgets/resizable.js @@ -261,7 +261,7 @@ $.widget( "ui.resizable", $.ui.mouse, { for ( i = 0; i < n.length; i++ ) { - handle = $.trim( n[ i ] ); + handle = String.prototype.trim.call( n[ i ] ); hname = "ui-resizable-" + handle; axis = $( "<div>" ); this._addClass( axis, "ui-resizable-handle " + hname ); |