diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-10-15 11:03:49 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-10-15 11:03:49 +0000 |
commit | fd1e9489280539ec1961ee2bcd3ea01adb1c740c (patch) | |
tree | c85a6862281e32b83bbb50c331798d93ee497506 /tests/visual | |
parent | 79d25190cd08381d081fca876cd8aeeb3eb7670a (diff) | |
download | jquery-ui-fd1e9489280539ec1961ee2bcd3ea01adb1c740c.tar.gz jquery-ui-fd1e9489280539ec1961ee2bcd3ea01adb1c740c.zip |
core: implemented experimental async dependency loading
Diffstat (limited to 'tests/visual')
-rw-r--r-- | tests/visual/dep_loader.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/visual/dep_loader.html b/tests/visual/dep_loader.html new file mode 100644 index 000000000..891188e30 --- /dev/null +++ b/tests/visual/dep_loader.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+ <title>Dependency loading</title>
+ <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+
+ <script type="text/javascript">
+
+ $(document).ready(function() {
+
+ $("div").draggable();
+
+ });
+
+ </script>
+
+ </head>
+ <body>
+
+ <div style="width: 100px; height: 100px; background: green;"></div>
+
+ </body>
+</html>
\ No newline at end of file |