function scaleImageWidth()

in assets/www/scripts/photark_utils.js [68:75]


function scaleImageWidth(maxWidth, width, height, image) {
	if (width > maxWidth) {
		var ratio = maxWidth / width; // get ratio for scaling image
		image.width = maxWidth;
		image.height = height * ratio; // Scale height based on ratio

	}
}