Fix calendar d-n-d not showing up helper while dragging, using Safari 9

This commit is contained in:
Hadi Nategh 2015-10-08 09:41:10 +00:00
parent b29df627a7
commit 6623a2f7d7

View File

@ -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);
} }
}) })