now external images goes through ssl anonymizer

now external images goes through ssl anonymizer
This commit is contained in:
Hedgehog 2014-03-27 14:20:57 +04:00
parent f6d5096edb
commit d7f32304a2

View File

@ -295,9 +295,11 @@ function escapeHtmlEntities(str) {
function imagePreview(post) {
if (localStorage['showPreviewOpt'] == 'enable') {
var link = post.find("a[rel='nofollow']");
var linkAnon = 'https://ssl-proxy.my-addr.org/myaddrproxy.php/http/';
if (link.html() && /(\.jpg)|(\.gif)|(\.png)|(\.jpeg)/.test(link.html().toLowerCase()))
{
return "<img src='" + link.html() + "' class='image-preview' />";
var cleanLink = link.html().replace(/^http[s]?:\/\//i, '')
return "<img src='"+linkAnon+cleanLink+"' class='image-preview' />";
}
}
}