aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-30 06:10:08 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-30 06:10:08 +0000
commit2947b5306f540a9747582527afe1b4121ac668ac (patch)
tree648e6851385a9b38367067cbf3f109224e604e36 /demos/resizable
parentc7d625860cc81b1236400e48a1c3c7d3aea61d99 (diff)
downloadjquery-ui-2947b5306f540a9747582527afe1b4121ac668ac.tar.gz
jquery-ui-2947b5306f540a9747582527afe1b4121ac668ac.zip
demos/resizable/ghost.html - switched to framework classes
Diffstat (limited to 'demos/resizable')
-rw-r--r--demos/resizable/ghost.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/demos/resizable/ghost.html b/demos/resizable/ghost.html
index 4052ba5ec..a84f1f270 100644
--- a/demos/resizable/ghost.html
+++ b/demos/resizable/ghost.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; }
+ .ui-resizable-ghost { 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>