diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-30 05:38:56 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-30 05:38:56 +0000 |
commit | cc237b31cd73de6cd29ed8de9a0177485cd0bbdb (patch) | |
tree | c76d4486695e48413629d1365ae815c46e5c8f91 /ui | |
parent | 1ff49c1322da33b0ff9b8051f8aa297b7a247275 (diff) | |
download | jquery-ui-cc237b31cd73de6cd29ed8de9a0177485cd0bbdb.tar.gz jquery-ui-cc237b31cd73de6cd29ed8de9a0177485cd0bbdb.zip |
Fixed #3708 - Resizable: all classes added should have 'ui-' prefix, 'proxy' should be 'ui-resizable-helper'
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index a5e5cb49a..8a56ba9df 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -27,7 +27,7 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, { $.extend(o, { _aspectRatio: !!(o.aspectRatio), - helper: o.helper || o.ghost || o.animate ? o.helper || 'proxy' : null, + helper: o.helper || o.ghost || o.animate ? o.helper || 'ui-resizable-helper' : null, knobHandles: o.knobHandles === true ? 'ui-resizable-knob-handle' : o.knobHandles }); |