aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/grid.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-27 10:05:03 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-27 10:05:03 +0000
commit191c23117fbeefc98184ffcab0e55f21299c1551 (patch)
treeeeefaca51518ac357c1622ee5f42013fa4c304a5 /demos/resizable/grid.html
parent671caddf94a3922489d22723812e1f80a884a54d (diff)
downloadjquery-ui-191c23117fbeefc98184ffcab0e55f21299c1551.tar.gz
jquery-ui-191c23117fbeefc98184ffcab0e55f21299c1551.zip
demos/resizable: removed no longer used (renamed) demos
Diffstat (limited to 'demos/resizable/grid.html')
-rw-r--r--demos/resizable/grid.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/demos/resizable/grid.html b/demos/resizable/grid.html
deleted file mode 100644
index 81ab1a0d5..000000000
--- a/demos/resizable/grid.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Resizable - Grid Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <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>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- #resizable { width: 150px; height: 150px; padding: 0.5em; }
- #resizable h3 { text-align: center; margin: 0; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#resizable").resizable({
- grid: 50
- });
- });
- </script>
-</head>
-<body>
-<div class="demo">
-
-<div id="resizable" class="ui-widget-content">
- <h3 class="ui-widget-header">Grid</h3>
-</div>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>
-<!-- Add description here -->
-</p>
-
-</div><!-- End demo-description -->
-</body>
-</html>