mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-02-16 04:35:09 -05:00
171c7c067106f6b35b2f35829a7d847858a36c74
- Don't hide shadow during drag/resize in IE6 (let the user do this one their own).
- Let users modify the shadow option after init.
.parents('.ui-dialog')
.bind('dragstart resizestart', function() {
$(this).find('.ui-dialog-content').dialog('option', 'shadow', false);
})
.bind('dragstop resizestop', function() {
$(this).find('.ui-dialog-content').dialog('option', 'shadow', true);
});
Description
No description provided
Languages
JavaScript
88.1%
HTML
9.4%
CSS
2.5%