Opened 16 years ago
Closed 15 years ago
#1783 closed bug (fixed)
Draggable cursor setting does not change
Reported by: | tuupola | Owned by: | rworth |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui | Version: | |
Keywords: | draggable, cursor | Cc: | |
Blocked by: | Blocking: |
Description
Setting cursor parameter does not work using draggables. Tested with OSX FF2 and Safari.
$("#something").draggable({ cursor : "move" });
Workaround is to use something like following:
$("#something").draggable({ cursor : "move", start : function(event, ui) { $(this).css('cursor','move'); }, stop : function(event, ui) { $(this).css('cursor','default'); } });
Change History (3)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Owner: | set to rworth |
---|---|
Status: | new → assigned |
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Sorry this is bogus. I was not including ui.draggable.ext.js.
One cosmetic request though. IMO cursor should change on mousedown. Now it changes only after you have started to drag element.