aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-31 00:17:33 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-31 00:17:33 +0000
commit76ab85ab2202579f4c001bc956dab60693422788 (patch)
tree84858373fcca65984c94b9220076f4716e8d8a51 /demos
parent5a375537c4e47054db8a92b71114337900894369 (diff)
downloadjquery-ui-76ab85ab2202579f4c001bc956dab60693422788.tar.gz
jquery-ui-76ab85ab2202579f4c001bc956dab60693422788.zip
demos/draggable/helper.html: adjusted cursorAt position of custom helper
Diffstat (limited to 'demos')
-rw-r--r--demos/draggable/helper.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/draggable/helper.html b/demos/draggable/helper.html
index 9246895de..368cf0315 100644
--- a/demos/draggable/helper.html
+++ b/demos/draggable/helper.html
@@ -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>');
}