diff --git a/calendar/js/app.js b/calendar/js/app.js index 009d6e8ac7..42e921555c 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -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); } })