Monotone-Parent: 4d94487c312c73f76cac4c9cbbfef71966a3b768

Monotone-Revision: 7cc283107984b0e4e73a623772894e8cc7db2e29

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-02T22:43:17
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-08-02 22:43:17 +00:00
parent c2755c065d
commit 78ac3c734d
2 changed files with 12 additions and 4 deletions
+8 -4
View File
@@ -17,17 +17,20 @@
),
( // second group
{ link = "reply";
{ link = "reply";
onclick = "return onMenuReplyToSender(event);";
isSafe = NO;
image = "tb-mail-reply-flat-24x24.png";
cssClass = "tbicon_reply"; label = "Reply"; },
{ link = "replyall";
{ link = "replyall";
onclick = "return onMenuReplyToAll(event);";
isSafe = NO;
image = "tb-mail-replyall-flat-24x24.png";
cssClass = "tbicon_replyall"; label = "Reply All"; },
{ link = "forward";
{ link = "forward";
onclick = "return onMenuForwardMessage(event);";
isSafe = NO;
image = "tb-mail-forward-flat-24x24.png";
cssClass = "tbicon_forward"; label = "Forward"; },
@@ -36,7 +39,8 @@
( // third group
{ link = "delete";
isSafe = NO;
enabled = showMarkDeletedButton;
onclick = "return onMenuDeleteMessage(event);";
// enabled = showMarkDeletedButton;
image = "tb-mail-delete-flat-24x24.png";
cssClass = "tbicon_delete"; label = "Delete"; },
{ link = "#";
+4
View File
@@ -975,18 +975,22 @@ function onMenuOpenMessage(event)
function onMenuReplyToSender(event)
{
openMessageWindowsForSelection(null, 'reply');
return false;
}
function onMenuReplyToAll(event)
{
openMessageWindowsForSelection(null, 'replyall');
return false;
}
function onMenuForwardMessage(event)
{
openMessageWindowsForSelection(null, 'forward');
return false;
}
function onMenuDeleteMessage(event)