aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 2e8930eb0..72e129150 100644
--- a/demos/draggable/cursor-style.html
+++ b/demos/draggable/cursor-style.html
@@ -15,8 +15,8 @@
</style>
<script>
$(function() {
- $( "#draggable" ).draggable({ cursorAt: { cursor: "move", top: 56, left: 56 } });
- $( "#draggable2" ).draggable({ cursorAt: { cursor: "crosshair", top: -5, left: -5 } });
+ $( "#draggable" ).draggable({ cursor: "move", cursorAt: { top: 56, left: 56 } });
+ $( "#draggable2" ).draggable({ cursor: "crosshair", cursorAt: { top: -5, left: -5 } });
$( "#draggable3" ).draggable({ cursorAt: { bottom: 0 } });
});
</script>