mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-21 06:33:18 +00:00
Monotone-Parent: 8cc62c915713d2c4395b799a5331f9ed57337e57
Monotone-Revision: 5c48c42bca0a7fa0557036bfc2d88588e16def7c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-09-14T23:16:05 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
* UI/WebServerResources/MailerUI.js (configureLoadImagesButton):
|
* UI/WebServerResources/MailerUI.js (configureLoadImagesButton):
|
||||||
retrieve all "img" elements with an "unsafe-src" attribute and
|
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
|
* UI/MailPartViewers/UIxMailPartHTMLViewer.m
|
||||||
(-startElement:namespace:rawName:attributes:): treat tag names as
|
(-startElement:namespace:rawName:attributes:): treat tag names as
|
||||||
|
|||||||
@@ -1189,7 +1189,7 @@ function onMessageLoadImages(event) {
|
|||||||
img.src = img.getAttribute("unsafe-src");
|
img.src = img.getAttribute("unsafe-src");
|
||||||
});
|
});
|
||||||
|
|
||||||
delete content.hiddenImgs;
|
content.hiddenImgs = null;
|
||||||
var loadImagesButton = $("loadImagesButton");
|
var loadImagesButton = $("loadImagesButton");
|
||||||
loadImagesButton.setStyle({ display: 'none' });
|
loadImagesButton.setStyle({ display: 'none' });
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user