mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-18 03:38:49 +00:00
Monotone-Parent: 992caf023ddb85d68d02283b857594a23b4582e7
Monotone-Revision: c8ffc75afc6375fd954ab207e9dbdef8b4793876 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-08-21T16:00:25 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -212,8 +212,20 @@ function openUserFolderSelector(callback, type) {
|
||||
w.focus();
|
||||
}
|
||||
|
||||
function openMailComposeWindow(url) {
|
||||
var w = window.open(url, null,
|
||||
function openContactWindow(url, wId) {
|
||||
if (!wId)
|
||||
wId = "" + (new Date().getTime());
|
||||
var w = window.open(url, wId,
|
||||
"width=450,height=600,resizable=0");
|
||||
w.focus();
|
||||
|
||||
return w;
|
||||
}
|
||||
|
||||
function openMailComposeWindow(url, wId) {
|
||||
if (!wId)
|
||||
wId = "" + (new Date().getTime());
|
||||
var w = window.open(url, wId,
|
||||
"width=680,height=520,resizable=1,scrollbars=1,toolbar=0,"
|
||||
+ "location=0,directories=0,status=0,menubar=0"
|
||||
+ ",copyhistory=0");
|
||||
|
||||
Reference in New Issue
Block a user