aboutsummaryrefslogtreecommitdiffstats
path: root/demos/draggable/cursor-style.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/draggable/cursor-style.html')
-rw-r--r--demos/draggable/cursor-style.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/draggable/cursor-style.html b/demos/draggable/cursor-style.html
index b82b5bafa..4d581a0ef 100644
--- a/demos/draggable/cursor-style.html
+++ b/demos/draggable/cursor-style.html
@@ -12,8 +12,8 @@
</style>
<script type="text/javascript">
$(function() {
- $("#draggable").draggable({ cursorAt: { top: 56, left: 56 } });
- $("#draggable2").draggable({ cursorAt: { top: -5, left: -5 } });
+ $("#draggable").draggable({ cursorAt: { cursor: 'move', top: 56, left: 56 } });
+ $("#draggable2").draggable({ cursorAt: { cursor: 'crosshair', top: -5, left: -5 } });
$("#draggable3").draggable({ cursorAt: { bottom: 0 } });
});
</script>