Danbooru

"Original Image" link isn't working

Posted under General

Well, it does seem to work right now, it's just odd and doesn't work like it used to. It doesn't bold whenever the image has been resized, and when you click on it, it takes you to the image on a new page (so you can still download the full image), rather than resizing to full size.

I'm having a similar problem, I think. The "Original Image" link at the top of the page no longer works; it just loads the page again, without showing the full-sized image.
Clicking on the "Original Image" link on the left Options panel results in being taken directly to the full-sized image itself, without the html page.

I have no idea why this happened; I didn't change any settings or anything.

Happening to me too. Clicking the Original Image on the left just takes me to a new page where the image loads full size, but doesn't make it full size on the current page, like it used to.

This also affects translation notes on larger images, because you used to be able to scale the image to full and the notes would still be there, but now since it takes you to a new page to scale the image, the notes obviously don't carry over to that page.

The javascript is expecting the link to the original image to have the id "highres". Adding this attribute fixes everything.

Like so:

javascript:for (listElem = document.getElementById('add-to-favs'); listElem != null; listElem = listElem.previousSibling) if (/\/data\//.test(listElem.innerHTML)) listElem.firstChild.id = "highres";

The original image link also used to have a class attribute "original-file-unchanged" or "original-file-changed", at least for deleted images. Wonder why that changed recently.

Updated

1