Skip to content

Commit

Permalink
Demos draggable: corrected cursor option in cursor-style demos to not…
Browse files Browse the repository at this point in the history
… be inside of cursorAt option. Fixed #8104 - Draggable cursorAt demo options incorrect

(cherry picked from commit 6079982)
  • Loading branch information
rdworth committed Feb 7, 2012
1 parent 988b803 commit edd52ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demos/draggable/cursor-style.html
Expand Up @@ -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>
Expand Down

0 comments on commit edd52ed

Please sign in to comment.