Revert "make image width max out at 100%"

This reverts commit 32efbeb903.
This commit is contained in:
maxwell 2011-03-21 11:40:52 -07:00
parent 32efbeb903
commit 970e9bee04

View file

@ -126,7 +126,7 @@ var Stream = {
$(".stream a[target='_blank']").each(function(){ $(".stream a[target='_blank']").each(function(){
var link = $(this); var link = $(this);
if(link.attr('href').match(/\.gif$|\.jpg$|\.png$|\.jpeg$/)) { if(link.attr('href').match(/\.gif$|\.jpg$|\.png$|\.jpeg$/)) {
link.parent().append("<img width='100%' src='" + this.href + "' />"); link.parent().append("<img src='" + this.href + "'</img>");
link.remove(); link.remove();
} }
}); });