Skip to content

Commit 6079982

Browse files
committed
Demos draggable: corrected cursor option in cursor-style demos to not be inside of cursorAt option. Fixed #8104 - Draggable cursorAt demo options incorrect
1 parent 1cd26fc commit 6079982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/draggable/cursor-style.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
</style>
1616
<script>
1717
$(function() {
18-
$( "#draggable" ).draggable({ cursorAt: { cursor: "move", top: 56, left: 56 } });
19-
$( "#draggable2" ).draggable({ cursorAt: { cursor: "crosshair", top: -5, left: -5 } });
18+
$( "#draggable" ).draggable({ cursor: "move", cursorAt: { top: 56, left: 56 } });
19+
$( "#draggable2" ).draggable({ cursor: "crosshair", cursorAt: { top: -5, left: -5 } });
2020
$( "#draggable3" ).draggable({ cursorAt: { bottom: 0 } });
2121
});
2222
</script>

0 commit comments

Comments
 (0)