Monotone-Parent: 6e72cda98a0d10247d00cb8b21c0989d26a9e774

Monotone-Revision: cb44eaef6cc3aa0a6f570b05e783dcb291f731f4

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2008-10-16T15:09:15
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2008-10-16 15:09:15 +00:00
parent b4e75a005d
commit 71c61697ab
3 changed files with 20 additions and 11 deletions
+6 -5
View File
@@ -446,10 +446,11 @@ function getTarget(event) {
}
function preventDefault(event) {
if (event.preventDefault)
event.preventDefault(); // W3C DOM
else
event.returnValue = false; // IE
if (event)
if (event.preventDefault)
event.preventDefault(); // W3C DOM
else
event.returnValue = false; // IE
}
function resetSelection(win) {
@@ -1462,7 +1463,7 @@ function onLinkBannerClick() {
function onPreferencesClick(event) {
var urlstr = UserFolderURL + "preferences";
var w = window.open(urlstr, "_blank",
"width=430,height=250,resizable=0,scrollbars=0,location=0");
"width=440,height=250,resizable=0,scrollbars=0,location=0");
w.opener = window;
w.focus();