diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-30 06:12:30 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-30 06:12:30 +0000 |
commit | 551d3c22094325f7d3f582af3694d86684bd4977 (patch) | |
tree | feb7ac64703997b0d88413dba25e47b194a798b5 /demos/resizable/grid.html | |
parent | 2947b5306f540a9747582527afe1b4121ac668ac (diff) | |
download | jquery-ui-551d3c22094325f7d3f582af3694d86684bd4977.tar.gz jquery-ui-551d3c22094325f7d3f582af3694d86684bd4977.zip |
demos/resizable/grid.html - switched to framework classes
Diffstat (limited to 'demos/resizable/grid.html')
-rw-r--r-- | demos/resizable/grid.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/resizable/grid.html b/demos/resizable/grid.html index b0f57a245..db5d15b40 100644 --- a/demos/resizable/grid.html +++ b/demos/resizable/grid.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({ @@ -17,7 +20,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>
|