/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
1
2
3
4
5
6
7
/* Functions that run when the page loads */
$(document).ready(function() {
	$('#resolution').html($(window).width() + ' x ' + $(window).height());
	$(window).resize(function() {
		$('#resolution').html($(window).width() + ' x ' + $(window).height());
	});
});