diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-12-19 01:08:32 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-12-19 01:08:32 +0000 |
commit | f00247f9c9d8bd9cf35d8315328726950dddff48 (patch) | |
tree | 9272335b551d825cecf03d7f27d74b821e429785 /tests/visual/dialog.html | |
parent | cc22cc0de3a12b59bbce247e944ab5187e6b376e (diff) | |
download | jquery-ui-f00247f9c9d8bd9cf35d8315328726950dddff48.tar.gz jquery-ui-f00247f9c9d8bd9cf35d8315328726950dddff48.zip |
Dialog visual test:
- Made it possible to close and re-open the dialog.
- Added buttons.
Diffstat (limited to 'tests/visual/dialog.html')
-rw-r--r-- | tests/visual/dialog.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/visual/dialog.html b/tests/visual/dialog.html index 7429608e9..60c74171c 100644 --- a/tests/visual/dialog.html +++ b/tests/visual/dialog.html @@ -11,9 +11,16 @@ <script type="text/javascript" src="../../ui/ui.resizable.js"></script> <script type="text/javascript"> $(function() { - var dlg = $("#dlg").remove(); + var dlg = $("#dlg").dialog({ + autoOpen: false, + width: 600, + buttons: { + Ok: function() {}, + Cancel: function() {} + } + }); $("#dialog").click(function() { - dlg.appendTo('body').dialog({width: 600}); + dlg.dialog('open'); }); }); </script> |