Fix javascript error when calling "Save as event" from email message view page

This commit is contained in:
Aleksander Machniak 2015-01-08 11:07:26 -05:00
parent eab95ffdc2
commit ff4052e7dc

View file

@ -78,7 +78,8 @@ function rcube_calendar(settings)
{
if (event.title) {
this.ui.add_event(event);
rcmail.message_list.blur();
if (rcmail.message_list)
rcmail.message_list.blur();
}
};