Monotone-Parent: 145acd1ad78984a6f26963cc9b6abb3e5c915bcd

Monotone-Revision: d73281348e68338299c1595a484a8a1033de3cd1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-07-17T17:30:42
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-07-17 17:30:42 +00:00
parent bf4d619e2b
commit fc0aa87fed
9 changed files with 326 additions and 199 deletions
+6 -3
View File
@@ -36,9 +36,11 @@
/* mail list */
function openMessageWindow(sender, msguid, url) {
return window.open(url, "SOGo_msg_" + msguid,
"width=640,height=480,resizable=1,scrollbars=1,toolbar=0," +
"location=0,directories=0,status=0,menubar=0,copyhistory=0")
var msgWin = window.open(url, "SOGo_msg_" + msguid,
"width=640,height=480,resizable=1,scrollbars=1,toolbar=0," +
"location=0,directories=0,status=0,menubar=0,copyhistory=0");
msgWin.focus();
}
function clickedUid(sender, msguid) {
@@ -46,6 +48,7 @@ function clickedUid(sender, msguid) {
openMessageWindow(sender, msguid, msguid + "/view");
return true;
}
function doubleClickedUid(sender, msguid) {
alert("DOUBLE Clicked " + msguid);