mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +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)
|
||||
{
|
||||
oldInnerHTML = ui.helper[0].innerHTML;
|
||||
oldWidth = ui.helper.width();
|
||||
ui.helper.width(jQuery("#calColumn").width());
|
||||
//Safari 9 needs a delay to get the jquery helper width
|
||||
setTimeout(function(){
|
||||
oldInnerHTML = ui.helper[0].innerHTML;
|
||||
oldWidth = ui.helper.width();
|
||||
ui.helper.width(jQuery("#calColumn").width());
|
||||
},1);
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user