diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-27 10:05:03 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-27 10:05:03 +0000 |
commit | 191c23117fbeefc98184ffcab0e55f21299c1551 (patch) | |
tree | eeefaca51518ac357c1622ee5f42013fa4c304a5 /demos/resizable/max.html | |
parent | 671caddf94a3922489d22723812e1f80a884a54d (diff) | |
download | jquery-ui-191c23117fbeefc98184ffcab0e55f21299c1551.tar.gz jquery-ui-191c23117fbeefc98184ffcab0e55f21299c1551.zip |
demos/resizable: removed no longer used (renamed) demos
Diffstat (limited to 'demos/resizable/max.html')
-rw-r--r-- | demos/resizable/max.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/demos/resizable/max.html b/demos/resizable/max.html deleted file mode 100644 index f59e8780a..000000000 --- a/demos/resizable/max.html +++ /dev/null @@ -1,40 +0,0 @@ -<!doctype html> -<html lang="en"> -<head> - <title>jQuery UI Resizable - Max Height / Width 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({ - maxHeight: 250, - maxWidth: 350 - }); - }); - </script> -</head> -<body> -<div class="demo"> - -<div id="resizable" class="ui-widget-content"> - <h3 class="ui-widget-header">maxHeight / maxWidth</h3> -</div> - -</div><!-- End demo --> - -<div class="demo-description"> - -<p> -<!-- Add description here --> -</p> - -</div><!-- End demo-description --> -</body> -</html> |