r1376 - trunk/demos/draggable
Author: rdworth
Date: Tue Dec 30 16:17:33 2008
New Revision: 1376
Modified:
trunk/demos/draggable/helper.html
Log:
demos/draggable/helper.html: adjusted cursorAt position of custom helper
Modified: trunk/demos/draggable/helper.html
==============================================================================
--- trunk/demos/draggable/helper.html (original)
+++ trunk/demos/draggable/helper.html Tue Dec 30 16:17:33 2008
@@ -15,7 +15,8 @@
$("#draggable").draggable({ helper: 'original' });
$("#draggable2").draggable({ helper: 'clone' });
$("#draggable3").draggable({
- cursorAt: { top: -5, left: -5 },
+ cursor: 'move',
+ cursorAt: { top: -12, left: -20 },
helper: function(event) {
return $('<div class="ui-widget-header">I\'m a custom helper</div>');
}