mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 21:04:53 +00:00
Monotone-Parent: c62f87f9eaae5a006ca213225187b102d079690f
Monotone-Revision: 4d769cbc45f10f9aec213da06d5d57cebdfab8e0 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-08-15T20:52:23 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,13 +1,24 @@
|
||||
function newEvent(sender) {
|
||||
var urlstr;
|
||||
|
||||
urlstr = "new";
|
||||
var urlstr = ApplicationBaseURL + "new";
|
||||
|
||||
window.open(urlstr, "SOGo_compose",
|
||||
"width=680,height=520,resizable=1,scrollbars=1,toolbar=0," +
|
||||
"location=0,directories=0,status=0,menubar=0,copyhistory=0");
|
||||
return false; /* stop following the link */
|
||||
}
|
||||
|
||||
function displayAppointment(sender) {
|
||||
var aptId = sender.getAttribute("aptId");
|
||||
var urlstr = ApplicationBaseURL + aptId + "/view";
|
||||
|
||||
var win = window.open(urlstr, "SOGo_view_" + aptId,
|
||||
"width=680,height=520,resizable=1,scrollbars=1,toolbar=0," +
|
||||
"location=0,directories=0,status=0,menubar=0,copyhistory=0");
|
||||
win.focus();
|
||||
|
||||
return false; /* stop following the link */
|
||||
}
|
||||
|
||||
function onContactRefresh(node)
|
||||
{
|
||||
var parentNode = node.parentNode;
|
||||
|
||||
Reference in New Issue
Block a user