mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 04:53:18 +01:00
Fix calendar d-n-d not showing up helper while dragging, using Safari 9
This commit is contained in:
parent
b29df627a7
commit
6623a2f7d7
@ -283,9 +283,12 @@ app.classes.calendar = AppJS.extend(
|
|||||||
*/
|
*/
|
||||||
start: function(event, ui)
|
start: function(event, ui)
|
||||||
{
|
{
|
||||||
oldInnerHTML = ui.helper[0].innerHTML;
|
//Safari 9 needs a delay to get the jquery helper width
|
||||||
oldWidth = ui.helper.width();
|
setTimeout(function(){
|
||||||
ui.helper.width(jQuery("#calColumn").width());
|
oldInnerHTML = ui.helper[0].innerHTML;
|
||||||
|
oldWidth = ui.helper.width();
|
||||||
|
ui.helper.width(jQuery("#calColumn").width());
|
||||||
|
},1);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user