2009-01-30 04:59:41 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Resizable Visual Test : Default</title>
|
|
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
|
2009-02-20 11:40:25 +00:00
|
|
|
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
|
2009-01-30 04:59:41 +00:00
|
|
|
<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({
|
|
|
|
aspectRatio: 'preserve'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
|
|
#resizable { width: 100px; height: 50px; background: silver; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="resizable">Resizable</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|