Fixed parent.location problem for compose-links

release-0.6
thomascube 19 years ago
parent 609a87e835
commit bc8dc6573e

@ -842,7 +842,10 @@ function rcube_webmail()
this.set_busy(true);
// need parent in case we are coming from the contact frame
parent.window.location.href = url;
if (this.env.framed)
parent.location.href = url;
else
location.href = url;
break;
case 'send':

Loading…
Cancel
Save