Modify ↓
Ticket #7166 (closed bug: invalid)
1.4.3 RC2 displays duplicate jQuery UI dialogs
| Reported by: | jagid | Owned by: | john |
|---|---|---|---|
| Priority: | blocker | Milestone: | 1.4.3 |
| Component: | unfiled | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Close the dialog and you will see a second empty dialog sitting behind it
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Tried to upload a supporting doc but it doesn't seem to work. Here's a simple test case:
<div id="testdiv">Test content<div> <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3rc2.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#testdiv").dialog(); }); </script>