Monotone-Parent: 477e32cf5b5583a15d85d9811ea38d461ff7de4e

Monotone-Revision: 469d156712114bc63eea7b914bbf76d4166fc60e

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2008-08-21T19:06:05
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2008-08-21 19:06:05 +00:00
parent f168a1236d
commit 622ea34323
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -28,7 +28,7 @@
</ul>
</div>
<form const:href="send" name="pageform" enctype="multipart/form-data">
<form const:href="send" name="pageform" enctype="multipart/form-data" autocomplete="off">
<div id="attachmentsArea">
<var:string label:value="Attachments:" />
<ul id="attachments">
+1 -1
View File
@@ -496,7 +496,7 @@ function initMailEditor() {
// textarea.observe("contextmenu", onTextContextMenu);
textarea.observe("mousedown", onTextMouseDown, true);
initTabIndex(list, $$("div#subjectRow input").first(), textarea);
initTabIndex($("addressList"), $$("div#subjectRow input").first(), textarea);
onWindowResize(null);
Event.observe(window, "resize", onWindowResize);
+2 -1
View File
@@ -990,11 +990,12 @@ function initCriteria() {
searchValue.setStyle({ color: "#aaa" });
}
// Set the checkmark to the first option
firstOption.addClassName("_chosen");
if (searchOptions.chosenNode)
searchOptions.chosenNode.removeClassName("_chosen");
firstOption.addClassName("_chosen");
searchOptions.chosenNode = firstOption;
}
searchValue.blur();
}
}