diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-13 11:51:33 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-13 11:51:33 +0000 |
commit | 24f2b7794c6fa4e57c825a36b5b2ef6284a99471 (patch) | |
tree | 06a73267e256ab1b8b8345d4da0517e2e0b01d10 /ui/ui.dialog.js | |
parent | b731dc5e9798601da4a3e505512b4efe5b90b63d (diff) | |
download | jquery-ui-24f2b7794c6fa4e57c825a36b5b2ef6284a99471.tar.gz jquery-ui-24f2b7794c6fa4e57c825a36b5b2ef6284a99471.zip |
corrected some invalid html <div/> to <div></div>
Diffstat (limited to 'ui/ui.dialog.js')
-rw-r--r-- | ui/ui.dialog.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 401c04e19..41732dc80 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -41,8 +41,8 @@ $.widget("ui.dialog", { .addClass( 'ui-dialog-content ' + 'ui-widget-content') - .wrap('<div/>') - .wrap('<div/>'), + .wrap('<div></div>') + .wrap('<div></div>'), uiDialogContainer = (this.uiDialogContainer = uiDialogContent.parent()) .addClass('ui-dialog-container') @@ -52,7 +52,7 @@ $.widget("ui.dialog", { height: '100%' }), - uiDialogTitlebar = (this.uiDialogTitlebar = $('<div/>')) + uiDialogTitlebar = (this.uiDialogTitlebar = $('<div></div>')) .addClass( 'ui-dialog-titlebar ' + 'ui-widget-header ' + @@ -134,7 +134,7 @@ $.widget("ui.dialog", { self.moveToTop(); }), - uiDialogButtonPane = (this.uiDialogButtonPane = $('<div/>')) + uiDialogButtonPane = (this.uiDialogButtonPane = $('<div></div>')) .addClass( 'ui-dialog-buttonpane ' + 'ui-widget-content ' + @@ -515,7 +515,7 @@ $.extend($.ui.dialog.overlay, { $(window).bind('resize.dialog-overlay', $.ui.dialog.overlay.resize); } - var $el = $('<div/>').appendTo(document.body) + var $el = $('<div></div>').appendTo(document.body) .addClass('ui-dialog-overlay').css($.extend({ borderWidth: 0, margin: 0, padding: 0, position: 'absolute', top: 0, left: 0, |