diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-22 12:01:20 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-22 12:01:20 +0000 |
commit | f3b91832ce164d1ec80d29b83c92535e4a2f8b0b (patch) | |
tree | dc4117c1c28df7212fb2a163b9cf69ff3d745301 /tests/visual/resizable/resizable.html | |
parent | 892c52225b9c1f7dcb2ec9ff990a458dbe0002ce (diff) | |
download | jquery-ui-f3b91832ce164d1ec80d29b83c92535e4a2f8b0b.tar.gz jquery-ui-f3b91832ce164d1ec80d29b83c92535e4a2f8b0b.zip |
tests: Added extra folder level for each plugin in static and visual test folders
Diffstat (limited to 'tests/visual/resizable/resizable.html')
-rw-r--r-- | tests/visual/resizable/resizable.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/visual/resizable/resizable.html b/tests/visual/resizable/resizable.html new file mode 100644 index 000000000..2074fca79 --- /dev/null +++ b/tests/visual/resizable/resizable.html @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> +<head> + <title>Simple Resizable</title> + <link rel="stylesheet" href="../all.css" type="text/css"> + <link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" /> + <script type="text/javascript" src="../../../jquery-1.3.1.js"></script> + <script type="text/javascript" src="../../../ui/ui.core.js"></script> + <script type="text/javascript" src="../../../ui/ui.resizable.js"></script> + <script type="text/javascript"> + $(function() { + $("#resizable").resizable(); + }); + </script> +</head> +<body> + +<ul class="plugins"> +<li class="plugin"> + Resizable + <div id="resizable"></div> +</li> +</ul> + +</body> +</html> |