Monotone-Parent: 8cc62c915713d2c4395b799a5331f9ed57337e57

Monotone-Revision: 5c48c42bca0a7fa0557036bfc2d88588e16def7c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-09-14T23:16:05
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-09-14 23:16:05 +00:00
parent 715e21ba2e
commit 2df33fb74a
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@
* UI/WebServerResources/MailerUI.js (configureLoadImagesButton):
retrieve all "img" elements with an "unsafe-src" attribute and
remember them in an array attached to $("messageContent").
remember them in an array attached to $("messageContent"). We also
void using "delete" on the stored array because IE 7 is too dumb.
* UI/MailPartViewers/UIxMailPartHTMLViewer.m
(-startElement:namespace:rawName:attributes:): treat tag names as

View File

@ -1189,7 +1189,7 @@ function onMessageLoadImages(event) {
img.src = img.getAttribute("unsafe-src");
});
delete content.hiddenImgs;
content.hiddenImgs = null;
var loadImagesButton = $("loadImagesButton");
loadImagesButton.setStyle({ display: 'none' });