diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-09-28 01:17:32 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-09-28 01:17:32 +0000 |
commit | e1f4ea3ed357a29f44f1eb3d329b21b5d0b572a0 (patch) | |
tree | fc8748a476d148cfa77f2deb3ef490445f2f83f2 | |
parent | 0dd3b17185ad24bfaeb3fdf827669b38cf2e58e6 (diff) | |
download | jquery-ui-e1f4ea3ed357a29f44f1eb3d329b21b5d0b572a0.tar.gz jquery-ui-e1f4ea3ed357a29f44f1eb3d329b21b5d0b572a0.zip |
Dialog: Removed functionality for copying classes from the main element to the wrapper div. This was used for themes, but this method of theming is no longer encouraged.
-rw-r--r-- | ui/ui.dialog.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index c856af5ce..118460d7c 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -67,10 +67,6 @@ $.widget("ui.dialog", { .hide() .addClass('ui-dialog') .addClass(options.dialogClass) - // add content classes to dialog - // to inherit theme at top level of element - .addClass(uiDialogContent.attr('className')) - .removeClass('ui-dialog-content') .css({ position: 'absolute', width: options.width, |