]> source.dussan.org Git - jquery-ui.git/commitdiff
Demos draggable: corrected cursor option in cursor-style demos to not be inside of...
authorRichard D. Worth <rdworth@gmail.com>
Tue, 7 Feb 2012 12:06:58 +0000 (06:06 -0600)
committerRichard D. Worth <rdworth@gmail.com>
Tue, 7 Feb 2012 12:07:53 +0000 (06:07 -0600)
(cherry picked from commit 60799826aabda51182caefb67318a52ccdbf9b79)

demos/draggable/cursor-style.html

index 2e8930eb051d8dcdebc666401b9ed1040901c0eb..72e129150135529c3cbab77f088724a4a4286315 100644 (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>