aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-30 06:15:40 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-30 06:15:40 +0000
commit182b227081af437d538a494b70c55c051e8b9faa (patch)
tree654e67fea8eb81d5ca332889d0c62290c5a922a8 /demos/resizable
parent9661b1624f13a8029a984f1ac1f0d56df317d9d4 (diff)
downloadjquery-ui-182b227081af437d538a494b70c55c051e8b9faa.tar.gz
jquery-ui-182b227081af437d538a494b70c55c051e8b9faa.zip
demos/resizable/min.html - switched to framework classes
Diffstat (limited to 'demos/resizable')
-rw-r--r--demos/resizable/min.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/resizable/min.html b/demos/resizable/min.html
index 880f1d77b..95775f41c 100644
--- a/demos/resizable/min.html
+++ b/demos/resizable/min.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({
@@ -18,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>