diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-03-05 17:05:29 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-03-05 17:05:29 -0800 |
commit | 907377835bb34ca395dc5c6ab5a53f0fd2f6392b (patch) | |
tree | 7f4ddcbdc22d06c1ee7afe063cd6f0ee4ecffe22 /lib | |
parent | e5e50196211a041efcb3ce3ae56d48f88873c0de (diff) |
When we're not auto-fitting the image, pin it to the top of the page.
This way small images on pages with a ton of comments don't get pushed
way down. Fixes #1626.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gallery.show_full_size.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gallery.show_full_size.js b/lib/gallery.show_full_size.js index 531d2a3a..0baee882 100644 --- a/lib/gallery.show_full_size.js +++ b/lib/gallery.show_full_size.js @@ -20,7 +20,7 @@ image_size = $.gallery_auto_fit_window(image_width, image_height); } else { image_size = { - top: Math.round((height - image_height) / 2), + top: 12, left: Math.round((width - image_width) / 2), width: Math.round(image_width), height: Math.round(image_height) |