Skip to content

Commit

Permalink
Indentation fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckieffer committed Jul 11, 2010
1 parent 9c9c087 commit b7cc677
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions lib/gallery.common.js
Expand Up @@ -151,24 +151,24 @@
var width = size.width() - 6,
height = size.height() - 6;

var ratio = width / imageWidth;
imageWidth *= ratio;
imageHeight *= ratio;

/* after scaling the width, check that the height fits */
if (imageHeight > height) {
ratio = height / imageHeight;
var ratio = width / imageWidth;
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)
};
/* after scaling the width, check that the height fits */
if (imageHeight > height) {
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)
};
};

// Initialize a short form. Short forms may contain only one text input.
Expand Down

0 comments on commit b7cc677

Please sign in to comment.