Demos draggable: corrected cursor option in cursor-style demos to not be inside of cursorAt option. Fixed #8104 - Draggable cursorAt demo options incorrect

This commit is contained in:
Richard D. Worth
2012-02-07 06:06:58 -06:00
parent 1cd26fc759
commit 60799826aa

View File

@@ -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>