]> source.dussan.org Git - jquery-ui.git/commit
Dialog: Shadow cleanup.
authorScott González <scott.gonzalez@gmail.com>
Sat, 31 Jan 2009 04:33:36 +0000 (04:33 +0000)
committerScott González <scott.gonzalez@gmail.com>
Sat, 31 Jan 2009 04:33:36 +0000 (04:33 +0000)
commit171c7c067106f6b35b2f35829a7d847858a36c74
tree947466688f8f1144371ae6d3992f6523c92f63e6
parent6695e5ac7f5be9be2b25f62314ba80812a5fbf65
Dialog: Shadow cleanup.
  - 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);
});
ui/ui.dialog.js