Sha256: cf0742dee0b6c1f646cd3715cc6c19fc3f904e85bd5fcecfe442d01952d98fe9

Contents?: true

Size: 1.57 KB

Versions: 5

Compression:

Stored size: 1.57 KB

Contents

/*
 image_ex.js: javascript for image_ex.rb plugin of tDiary

 Copyright (C) 2012 by Shugo Maeda
 You can redistribute it and/or modify it under GPL2.
 */

$(function() {
	function getWindowSize() {
		if (window.innerWidth) {
			return {
				width: window.innerWidth,
				height: window.innerHeight
			};
		}
		else if (document.documentElement &&
				  	document.documentElement.clientWidth != 0 ) {
			return {
				width: document.documentElement.clientWidth,
				height: document.documentElement.clientHeight
			};
		}
		else if ( document.body ) {
			return {
				width: document.body.clientWidth,
				height: document.body.clientHeight
			}
		}
		return false;
	}

	var maxSize = null;

	function getMaxSize() {
		if (maxSize != null) {
			return maxSize;
		}

		var windowSize = getWindowSize();
		if (windowSize == false) {
			maxSize = false;
		}
		else {
			maxSize = {
				width: windowSize.width * 0.8,
				height: windowSize.height * 0.8
			};
		}
		return maxSize;
	}

	function resizeImage(img) {
		var maxSize = getMaxSize();

		if (img.width > maxSize.width || img.height > maxSize.height) {
			if (img.width / maxSize.width > img.height / maxSize.height) {
				img.width = maxSize.width;
			}
			else {
				img.height = maxSize.height;
			}
		}
	}

	$(window).width() <= 360) {
		$(document).ready(function() {
			$("img.image-ex").bind("load", function() {
				resizeImage(this);
			});
		});

		// for when images have been cached
		$(window).bind("load", function() {
			$("img.image-ex").each(function() {
				resizeImage(this);
			});
		});
	}
});

// vim: set ts=3 sw=3 noexpandtab :

Version data entries

5 entries across 4 versions & 2 rubygems

Version Path
tdiary-contrib-5.0.0 js/image_ex.js
tdiary-contrib-4.2.1 js/image_ex.js
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/bundler/gems/tdiary-contrib-2ab36447ae2a/js/image_ex.js
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/bundler/gems/tdiary-contrib-d189eb6688f1/js/image_ex.js
tdiary-contrib-4.2.0 js/image_ex.js