jaredhaight / lgod

http://www.livegeekordie.com
1 stars 0 forks source link

Cannot insert some pics using the image insert tool #15

Closed Murphinator2000 closed 11 years ago

Murphinator2000 commented 11 years ago

I have some cases where I have no problem inserting an image but I have other times when I cannot get it to insert the image no matter how hard I try. I have tried shrinking the image and changing the file type. I have linked to the image as a workaround.

Example images: https://www.livegeekordie.com/article/adam-orth-twitter-and-the-firing-that/

jaredhaight commented 11 years ago

Issue is with images that are taller than 800px. When the image is uploaded, the height and width are checked, if either is above 800px resizeImage function is called to scale it down. In this case, it's being called as:

resizeImage('ac', self.image, 0, 800)

Which is all sorts of broken. Now that I think this through a little more, I'll just take out the check for how tall an image is. All we care about for the article content should be how wide it is.