Monotone-Parent: 3a8cd7db86f49087aed77cc4fba9b7ce69fa8b50

Monotone-Revision: 0dc509f442891adef0778315e5f3971fb4576203

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-04-16T21:44:26
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-04-16 21:44:26 +00:00
parent f8de900dd7
commit 7d131982d0
3 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2010-04-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/UIxMailPopupView.js (initPopupMailer): we
assign window.messageUID from here now (by concatenating
"mailboxName" and "messageName", as it will disappear if the
window is reloaded.
2010-04-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (onDocumentKeydown): when

View File

@@ -59,7 +59,6 @@ function openMessageWindow(msguid, url) {
markMailReadInWindow(window, msguid);
}
var msgWin = openMailComposeWindow(url, wId);
msgWin.messageUID = msguid;
msgWin.focus();
Mailer.popups.push(msgWin);

View File

@@ -12,6 +12,8 @@ function initPopupMailer(event) {
configureLoadImagesButton();
configureSignatureFlagImage();
window.messageUID = mailboxName + "/" + messageName;
}
function onICalendarButtonClick(event) {