diff options
Diffstat (limited to 'swat/apps/qooxdoo-examples/test/Builder_2.html')
-rw-r--r-- | swat/apps/qooxdoo-examples/test/Builder_2.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/swat/apps/qooxdoo-examples/test/Builder_2.html b/swat/apps/qooxdoo-examples/test/Builder_2.html new file mode 100644 index 0000000000..720e02f5dd --- /dev/null +++ b/swat/apps/qooxdoo-examples/test/Builder_2.html @@ -0,0 +1,25 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>qooxdoo » Demo</title> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/> + <!--[if IE]> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/> + <![endif]--> + <script type="text/javascript" src="../../script/qx.js"></script> +</head> +<body> + <script type="text/javascript" src="../../script/layout.js"></script> + + <script type="text/javascript"> + qx.core.Init.getInstance().defineMain(function() { + new qx.client.Builder().buildFromUrl(qx.ui.core.ClientDocument.getInstance(), 'Builder_2.xml'); + }); + </script> + <div id="demoDescription"> + <p>qx.client.Builder demo.</p> + <p>Build your web apps using qooxdooml.</p> + <p>XmlHttp Example</p> + </div> +</body> +</html> |