mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-12 20:05:08 +00:00
See ChangeLog
Monotone-Parent: c66c023a1a42d53c473a7338a49a9b456d889ed9 Monotone-Revision: 62137d02651888053a8bd415f6e6f5aa79e44cf4 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-10-28T17:48:22 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -165,9 +165,8 @@ function openUserFolderSelector(callback, type) {
|
||||
function openContactWindow(url, wId) {
|
||||
if (!wId)
|
||||
wId = "_blank";
|
||||
else {
|
||||
else
|
||||
wId = sanitizeWindowName(wId);
|
||||
}
|
||||
|
||||
var w = window.open(url, wId,
|
||||
"width=450,height=600,resizable=0,location=0");
|
||||
@@ -181,9 +180,8 @@ function openMailComposeWindow(url, wId) {
|
||||
|
||||
if (!wId)
|
||||
wId = "_blank";
|
||||
else {
|
||||
else
|
||||
wId = sanitizeWindowName(wId);
|
||||
}
|
||||
|
||||
if (document.body.hasClassName("popup"))
|
||||
parentWindow = window.opener;
|
||||
@@ -1608,8 +1606,8 @@ function createFolderCallback(http) {
|
||||
function delegateInvitation(componentUrl, callbackFunction, callbackData) {
|
||||
var input = $("delegatedTo");
|
||||
var delegatedTo = null;
|
||||
if (input.uid != null)
|
||||
delegatedTo = input.uid;
|
||||
if (input.readAttribute("uid") != null)
|
||||
delegatedTo = input.readAttribute("uid");
|
||||
else if (input.value.blank())
|
||||
alert(getLabel("noEmailForDelegation"));
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user