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:07:53 -0600 |
commit | edd52edff48454717daaa2ab8417168d042ffefe (patch) | |
tree | d05240894efa3515fdc7d36bc7faff6321df70ed /demos | |
parent | 988b803be3085111cb8d741b99ab09151dc7f1b5 (diff) | |
download | jquery-ui-edd52edff48454717daaa2ab8417168d042ffefe.tar.gz jquery-ui-edd52edff48454717daaa2ab8417168d042ffefe.zip |
Demos draggable: corrected cursor option in cursor-style demos to not be inside of cursorAt option. Fixed #8104 - Draggable cursorAt demo options incorrect
(cherry picked from commit 60799826aabda51182caefb67318a52ccdbf9b79)
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> |