r1301 - trunk/demos/resizable
Author: rdworth
Date: Mon Dec 29 22:12:30 2008
New Revision: 1301
Modified:
trunk/demos/resizable/grid.html
Log:
demos/resizable/grid.html - switched to framework classes
Modified: trunk/demos/resizable/grid.html
==============================================================================
--- trunk/demos/resizable/grid.html (original)
+++ trunk/demos/resizable/grid.html Mon Dec 29 22:12:30 2008
@@ -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">
Resize me
</div>