aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/animate.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-30 05:02:22 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-30 05:02:22 +0000
commit1ff49c1322da33b0ff9b8051f8aa297b7a247275 (patch)
treebc228469be4ea2a9d1f98ad039aa5537dbbf6b91 /demos/resizable/animate.html
parent01de749603ed680ae4f0539308fe65832aa497ab (diff)
downloadjquery-ui-1ff49c1322da33b0ff9b8051f8aa297b7a247275.tar.gz
jquery-ui-1ff49c1322da33b0ff9b8051f8aa297b7a247275.zip
demos/resizable/animate.html - switched to framework classes
Diffstat (limited to 'demos/resizable/animate.html')
-rw-r--r--demos/resizable/animate.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/demos/resizable/animate.html b/demos/resizable/animate.html
index 60ed76c44..198b81a39 100644
--- a/demos/resizable/animate.html
+++ b/demos/resizable/animate.html
@@ -7,6 +7,10 @@
<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; background-position: top left; }
+ .proxy { border: 1px dotted gray; }
+ </style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
@@ -17,7 +21,7 @@
</head>
<body>
-<div id="resizable" style="width: 200px; height: 200px; background-color: #f00;">
+<div id="resizable" class="ui-widget-content">
<p>Resize me</p>
</div>