source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/tests/visual/resizable/resizable_option_aspectRatio_preserve_maxWidth_150.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 1009 bytes
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>Resizable Visual Test : Resizable option aspectRatio 1.0 maxWidth 150</title>
5 <link rel="stylesheet" href="../visual.css" type="text/css" />
6 <link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
7 <script type="text/javascript" src="../../../jquery-1.4.1.js"></script>
8 <script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
9 <script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
10 <script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
11 <script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>
12 <script type="text/javascript">
13 $(function() {
14 $("#resizable").resizable({
15 aspectRatio: 'preserve',
16 maxWidth: 150
17 });
18 });
19 </script>
20 <style type="text/css">
21 #resizable { width: 100px; height: 100px; background: silver; }
22 </style>
23</head>
24<body>
25
26<div id="resizable">Resizable</div>
27
28</body>
29</html>
Note: See TracBrowser for help on using the repository browser.