]> source.dussan.org Git - jquery-ui.git/commitdiff
demos/droppable: fixed up description of activeClass part of visual feedback demo
authorRichard Worth <rdworth@gmail.com>
Sun, 18 Jan 2009 03:21:47 +0000 (03:21 +0000)
committerRichard Worth <rdworth@gmail.com>
Sun, 18 Jan 2009 03:21:47 +0000 (03:21 +0000)
demos/droppable/visual-feedback.html

index 1e3f233eb7bee6c16880dde21cf91c8d9c6bfbc9..ae3f7d0fc8f48a8ef4bf6ac5056fdc0236244bfa 100644 (file)
@@ -24,8 +24,8 @@
                
                $("#draggable2").draggable();
                $("#droppable2").droppable({
+                       accept: "#draggable2",
                        activeClass: 'ui-state-hover',
-                       hoverClass: 'ui-state-active',
                        drop: function(event, ui) {
                                $(this).addClass('ui-state-highlight').find('p').html('Dropped!');
                        }
@@ -37,7 +37,7 @@
 <body>
 <div class="demo">
 
-<h3 class="docs">Feedback on hover only:</h3>
+<h3 class="docs">Feedback on hover:</h3>
        
 <div id="draggable" class="ui-widget-content">
        <p>Drag me to my target</p>
@@ -47,7 +47,7 @@
        <p>Drop here</p>
 </div>
 
-<h3 class="docs">Feedback on hover and when dropped:</h3>
+<h3 class="docs">Feedback on activating draggable:</h3>
 
 <div id="draggable2" class="ui-widget-content">
        <p>Drag me to my target</p>