See ChangeLog

Monotone-Parent: 60ea6e18203007e12287f19ec553de192b334dd6
Monotone-Revision: 5ad09d1387c73089e228fa7e371baffd873a233e

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-05-03T19:02:31
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2011-05-03 19:02:31 +00:00
parent c9a69a76a7
commit 82e303af71
3 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2011-05-03 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxMailEditor.js (createAttachment): show
the attachment name as the list entry's title.
* UI/WebServerResources/generic.js (onRowClick): in some cases
under ID, the event is trigger on the dragging identifier
and must be ignored.

View File

@ -58,7 +58,7 @@
<var:string label:value="Attachments:" />
<ul id="attachments">
<var:foreach list="attachmentNames" item="attachmentName"
><li><img rsrc:src="attachment.gif"
><li var:title="attachmentName"><img rsrc:src="attachment.gif"
/><var:string value="attachmentName"
/></li></var:foreach>
</ul>

View File

@ -251,6 +251,7 @@ function createAttachment(node, list) {
var fileArray = filename.split(separator);
var attachmentName = document.createTextNode(fileArray[fileArray.length-1]);
attachment.appendChild(attachmentName);
attachment.writeAttribute("title", fileArray[fileArray.length-1]);
}
function clickedEditorSave() {