Search and Top Navigation
#4746 closed bug (worksforme)
Opened August 04, 2009 04:06PM UTC
Closed November 04, 2012 06:34PM UTC
"stop" draggable event never gets called in safari
| Reported by: | guigouz | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.0.0 |
| Component: | ui.sortable | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
I have the following piece of code which works fine on IE and Firefox:
$('#mylist').draggable({
distance: 100,
helper: 'clone',
opacity : 0.35,
revert: 'valid',
stop: function(event, ui) {
$(this).remove();
}
}
);
On safari, the dragging works, but the "stop" event never gets called.
Attachments (0)
Change History (4)
Changed August 22, 2009 02:12PM UTC by comment:1
Changed November 18, 2009 07:54AM UTC by comment:2
| description: | I have the following piece of code which works fine on IE and Firefox: \ $('#mylist').draggable({ \ distance: 100, \ helper: 'clone', \ opacity : 0.35, \ revert: 'valid', \ stop: function(event, ui) { \ $(this).remove(); \ } \ } \ ); \ On safari, the dragging works, but the "stop" event never gets called. → I have the following piece of code which works fine on IE and Firefox: \ \ {{{ \ $('#mylist').draggable({ \ distance: 100, \ helper: 'clone', \ opacity : 0.35, \ revert: 'valid', \ stop: function(event, ui) { \ $(this).remove(); \ } \ } \ ); \ }}} \ \ On safari, the dragging works, but the "stop" event never gets called. |
|---|---|
| milestone: | TBD → 1.8 |
Also, which Safari version were you using?
Changed October 11, 2012 02:54PM UTC by comment:3
| milestone: | 1.9.0 → 2.0.0 |
|---|
Changed November 04, 2012 06:34PM UTC by comment:4
| resolution: | → worksforme |
|---|---|
| status: | new → closed |
Thanks for taking the time to contribute to the jQuery UI project! I can no longer reproduce the issue using the latest jQuery and jQuery UI. http://jsfiddle.net/GCccG/
If you can still reproduce it, please feel free to reply to this ticket with a test case showing the problem. Thanks!
Can you provide a complete test page?