bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
124.1.1
by Erik Wikström
Added display of statistics in the sidepane |
1 |
/* Functions that run when the page loads */
|
2 |
$(document).ready(function() { |
|
3 |
$('#resolution').html($(window).width() + ' x ' + $(window).height()); |
|
4 |
$(window).resize(function() { |
|
5 |
$('#resolution').html($(window).width() + ' x ' + $(window).height()); |
|
6 |
}); |
|
7 |
});
|