r1811 - trunk/demos/sortable

r1811 - trunk/demos/sortable


Author: paul.bakaus
Date: Tue Jan 27 07:36:10 2009
New Revision: 1811
Modified:
trunk/demos/sortable/placeholder.html
Log:
demos: li's must have a height in IE6 in certain cases, or otherwise
event.target is the parent (related to #3880)
Modified: trunk/demos/sortable/placeholder.html
==============================================================================
--- trunk/demos/sortable/placeholder.html    (original)
+++ trunk/demos/sortable/placeholder.html    Tue Jan 27 07:36:10 2009
@@ -9,7 +9,7 @@
    <link type="text/css" href="../demos.css" rel="stylesheet" />
    <style type="text/css">
    #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
-    #sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; }
+    #sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em;
height: 1.5em; }
    html>body #sortable li { height: 1.5em; line-height: 1.2em; }
    .ui-state-highlight { height: 1.5em; line-height: 1.2em; }
    </style>