mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
Fix missing drag helper
This commit is contained in:
parent
f33862b8b6
commit
aa47e50f97
@ -187,7 +187,10 @@ function egwDragActionImplementation()
|
|||||||
.on("drag", function(e) {
|
.on("drag", function(e) {
|
||||||
// Remove the helper, it has been copied into the dataTransfer object now
|
// Remove the helper, it has been copied into the dataTransfer object now
|
||||||
// Hopefully user didn't notice it...
|
// Hopefully user didn't notice it...
|
||||||
ai.helper.remove();
|
if(e.dataTransfer != null)
|
||||||
|
{
|
||||||
|
ai.helper.remove();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
$j(node).draggable(
|
$j(node).draggable(
|
||||||
|
Loading…
Reference in New Issue
Block a user