aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/compound
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2009-07-24 12:53:04 +0000
committerScott González <scott.gonzalez@gmail.com>2009-07-24 12:53:04 +0000
commitbfca009321a9be73c7b4fa042f0cfe5fd39ca8a4 (patch)
treed77b5df718dde73025a178e543403b1f991111d3 /tests/visual/compound
parent30bfc47c35e3bf3a21692ed1b588b258ebbae209 (diff)
downloadjquery-ui-bfca009321a9be73c7b4fa042f0cfe5fd39ca8a4.tar.gz
jquery-ui-bfca009321a9be73c7b4fa042f0cfe5fd39ca8a4.zip
Datepicker in dialog compound demo: Initialize datepicker before dialog opens.
Diffstat (limited to 'tests/visual/compound')
-rw-r--r--tests/visual/compound/datepicker_dialog.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/visual/compound/datepicker_dialog.html b/tests/visual/compound/datepicker_dialog.html
index 5272beb0c..a34babc63 100644
--- a/tests/visual/compound/datepicker_dialog.html
+++ b/tests/visual/compound/datepicker_dialog.html
@@ -10,8 +10,8 @@
<script type="text/javascript" src="../../../ui/ui.dialog.js"></script>
<script type="text/javascript">
$(function() {
- $('#dialog').dialog();
$('#datepicker').datepicker();
+ $('#dialog').dialog();
});
</script>
</head>