aboutsummaryrefslogtreecommitdiffstats
path: root/demos/draggable/cursor-style.html
diff options
context:
space:
mode:
authorMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-19 17:39:27 +0000
committerMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-19 17:39:27 +0000
commit19ba6fe1cdddb205e0c10b41bf82eeea4353e8f4 (patch)
tree05057f277b9c2734b88b6b4c7f74511c0d575d51 /demos/draggable/cursor-style.html
parent2dff95fb8bf5b130928ff0f90ef3afc9cae7b51d (diff)
downloadjquery-ui-19ba6fe1cdddb205e0c10b41bf82eeea4353e8f4.tar.gz
jquery-ui-19ba6fe1cdddb205e0c10b41bf82eeea4353e8f4.zip
added 'cursor' options to examples
Diffstat (limited to 'demos/draggable/cursor-style.html')
-rw-r--r--demos/draggable/cursor-style.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/draggable/cursor-style.html b/demos/draggable/cursor-style.html
index b82b5bafa..4d581a0ef 100644
--- a/demos/draggable/cursor-style.html
+++ b/demos/draggable/cursor-style.html
@@ -12,8 +12,8 @@
</style>
<script type="text/javascript">
$(function() {
- $("#draggable").draggable({ cursorAt: { top: 56, left: 56 } });
- $("#draggable2").draggable({ cursorAt: { top: -5, left: -5 } });
+ $("#draggable").draggable({ cursorAt: { cursor: 'move', top: 56, left: 56 } });
+ $("#draggable2").draggable({ cursorAt: { cursor: 'crosshair', top: -5, left: -5 } });
$("#draggable3").draggable({ cursorAt: { bottom: 0 } });
});
</script>