Monotone-Parent: 9872e5c9f4b4743d4200582f8f35e0d7b2d28614

Monotone-Revision: d9a8ee8d9b6600013ef2d4b5fff89d856c8ceb10

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-22T17:41:38
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-03-22 17:41:38 +00:00
parent 39c23d6bec
commit 20b120d98b
2 changed files with 6 additions and 8 deletions
+3 -5
View File
@@ -60,16 +60,14 @@
><div id="logConsole"><!-- space --></div></var:if>
<div id="linkBanner" class="linkbanner">
<a var:href="relativeHomePath"
><var:string label:value="Home" /></a> |
<a var:href="relativeCalendarPath"
><var:string label:value="Calendar" /></a> |
<a var:href="relativeContactsPath"
><var:string label:value="Address Book" /></a> |
<a var:href="relativeMailPath"
><var:string label:value="Mail" /></a> |
<a var:href="logoffPath"
><var:string label:value="Logoff" /></a>
><var:string label:value="Mail" /></a>
<!-- | <a var:href="logoffPath"
><var:string label:value="Logoff" /></a> -->
<var:if condition="context.isUIxDebugEnabled"
>| <a href="#"><var:string
label:value="Log Console (dev.)" /></a
+3 -3
View File
@@ -1027,13 +1027,13 @@ function configureLinkBanner() {
var linkBanner = $("linkBanner");
if (linkBanner) {
var anchors = linkBanner.childNodesWithTag("a");
for (var i = 0; i < 4; i++) {
for (var i = 0; i < 2; i++) {
anchors[i].addEventListener("mousedown", listRowMouseDownHandler,
false);
anchors[i].addEventListener("click", onLinkBannerClick, false);
}
if (anchors.length > 5)
anchors[5].addEventListener("click", toggleLogConsole, true);
if (anchors.length > 3)
anchors[3].addEventListener("click", toggleLogConsole, true);
}
}