diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-08-28 13:42:45 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-08-28 13:42:45 -0600 |
commit | 94b5749d4604dc0d6b7a057d48a0f9d733e035ea (patch) | |
tree | f317cc0ab2ac2af98ac5c05fd1212a08a646d4f6 /lib | |
parent | b7803e99c1ec931b95619f65ce8bdc6f899ff975 (diff) |
Convert tabs to spaces.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gallery.common.js | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/gallery.common.js b/lib/gallery.common.js index a959d90d..c6a619c1 100644 --- a/lib/gallery.common.js +++ b/lib/gallery.common.js @@ -140,19 +140,18 @@ /* after scaling the width, check that the height fits */ if (imageHeight > height) { - ratio = height / imageHeight; - imageWidth *= ratio; - imageHeight *= ratio; + ratio = height / imageHeight; + imageWidth *= ratio; + imageHeight *= ratio; } // handle the case where the calculation is almost zero (2.14e-14) return { - top: Number((height - imageHeight) / 2), - left: Number((width - imageWidth) / 2), - width: Number(imageWidth), - height: Number(imageHeight) + top: Number((height - imageHeight) / 2), + left: Number((width - imageWidth) / 2), + width: Number(imageWidth), + height: Number(imageHeight) }; }; })(jQuery); - |