r1175 - trunk/tests/visual
Author: scott.gonzalez
Date: Thu Dec 18 17:08:32 2008
New Revision: 1175
Modified:
trunk/tests/visual/dialog.html
Log:
Dialog visual test:
- Made it possible to close and re-open the dialog.
- Added buttons.
Modified: trunk/tests/visual/dialog.html
==============================================================================
--- trunk/tests/visual/dialog.html (original)
+++ trunk/tests/visual/dialog.html Thu Dec 18 17:08:32 2008
@@ -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>