Fix unstoppable "Loading..." message on events export
This commit is contained in:
parent
239783c3dd
commit
77aa438b51
1 changed files with 2 additions and 2 deletions
|
@ -3106,7 +3106,7 @@ function rcube_calendar_ui(settings)
|
|||
else if (range > 0)
|
||||
start = 'today -' + range + ' months';
|
||||
|
||||
rcmail.goto_url('export_events', { source:source, start:start, attachments:attachmt?1:0 });
|
||||
rcmail.goto_url('export_events', { source:source, start:start, attachments:attachmt?1:0 }, false);
|
||||
}
|
||||
$dialog.dialog("close");
|
||||
};
|
||||
|
@ -3137,7 +3137,7 @@ function rcube_calendar_ui(settings)
|
|||
this.event_download = function(event)
|
||||
{
|
||||
if (event && event.id) {
|
||||
rcmail.goto_url('export_events', { source:event.calendar, id:event.id, attachments:1 });
|
||||
rcmail.goto_url('export_events', { source:event.calendar, id:event.id, attachments:1 }, false);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue