demos/resizable/distance.html - switched to framework classes

This commit is contained in:
Richard Worth 2008-12-30 06:01:22 +00:00
parent 4e0cb0ae55
commit c7d625860c

View File

@ -7,6 +7,9 @@
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<style type="text/css">
#resizable { width: 150px; height: 150px; padding: 0.5em; }
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
@ -17,9 +20,7 @@
</head>
<body>
<p>You must drag the div at least 40 pixels before it will resize.</p>
<div id="resizable" style="width: 200px; height: 200px; background-color: #f00;">
<div id="resizable" class="ui-widget-content">
<p>Resize me</p>
</div>