diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.resizable.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index 5614cc44d..61cea5206 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -135,6 +135,11 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, { var defCss = (loadDefault ? insertionsDefault[handle] : ''), axis = $(['<div class="ui-resizable-handle ', hname, '" style="', defCss, insertionsDefault.handle, '"></div>'].join('')).css( applyZIndex ); + + if ('se' == handle) { + axis.addClass('ui-icon ui-icon-gripsmall-diagonal-se'); + }; + o.handles[handle] = '.ui-resizable-'+handle; this.element.append( |