Skip to main content

Bug Tracker

Side navigation

#7166 closed bug (invalid)

Opened October 12, 2010 10:11PM UTC

Closed October 13, 2010 12:29AM UTC

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:
Blocked by: Blocking:
Description

Close the dialog and you will see a second empty dialog sitting behind it

Attachments (0)
Change History (3)

Changed October 12, 2010 10:14PM UTC by jagid comment:1

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>

Changed October 12, 2010 10:25PM UTC by john comment:2

need: ReviewPatch
owner: → john
priority: undecidedblocker
status: newaccepted

Hmm, ok - I'm checking in to this and talking with the UI guys.

Changed October 13, 2010 12:29AM UTC by scottgonzalez comment:3

resolution: → invalid
status: acceptedclosed

This is an invalid test because the #testdiv is never closed. Fixing the HTML removes the duplicate dialog.