aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-30 05:56:24 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-30 05:56:24 +0000
commit050f9762862a90ee449143c20c5eeb1100346626 (patch)
tree48bdb09d1cf903d9c6149cde90f24676ab195784
parentbf14d0a73d653785d24cf5dad45399cb50a459cb (diff)
downloadjquery-ui-050f9762862a90ee449143c20c5eeb1100346626.tar.gz
jquery-ui-050f9762862a90ee449143c20c5eeb1100346626.zip
demos/resizable/default.html - switched to framework classes
-rw-r--r--demos/resizable/default.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/resizable/default.html b/demos/resizable/default.html
index 9df217786..2ace6d6a9 100644
--- a/demos/resizable/default.html
+++ b/demos/resizable/default.html
@@ -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();
@@ -15,7 +18,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>