Browse Source

now external images goes through ssl anonymizer

now external images goes through ssl anonymizer
master
Hedgehog 10 years ago
parent
commit
d7f32304a2
  1. 4
      js/twister_formatpost.js

4
js/twister_formatpost.js

@ -295,9 +295,11 @@ function escapeHtmlEntities(str) { @@ -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' />";
}
}
}
Loading…
Cancel
Save