diff options
author | Richard D. Worth <rdworth@gmail.com> | 2012-02-07 06:06:58 -0600 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2012-02-07 06:06:58 -0600 |
commit | 60799826aabda51182caefb67318a52ccdbf9b79 (patch) | |
tree | 68456f38466949d343b8d9cd31618ef8a51e6441 /demos | |
parent | 1cd26fc759c177647203a7c36ddc6326a0c9221f (diff) | |
download | jquery-ui-60799826aabda51182caefb67318a52ccdbf9b79.tar.gz jquery-ui-60799826aabda51182caefb67318a52ccdbf9b79.zip |
Demos draggable: corrected cursor option in cursor-style demos to not be inside of cursorAt option. Fixed #8104 - Draggable cursorAt demo options incorrect
Diffstat (limited to 'demos')
-rw-r--r-- | demos/draggable/cursor-style.html | 4 |
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> |