mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user