mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Do not reposition events while hidden
This commit is contained in:
parent
105856f549
commit
f3ec3a205c
@ -857,6 +857,9 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
|
||||
*/
|
||||
position_event: function(event)
|
||||
{
|
||||
// If hidden, skip it - it takes too long
|
||||
if(!this.div.is(':visible')) return;
|
||||
|
||||
// Sort events into minimally-overlapping columns
|
||||
var columns = this._spread_events();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user