Files
cardsforscience/js/ui.js
T
Kevin Dungs 611d88cb96 Improve UI.
2014-08-02 22:11:57 +02:00

10 lines
196 B
JavaScript

$(function() {
var h = $(window).height();
$('.scrollable').height(h + 'px');
$(window).resize(function() {
var h = $(window).height();
$('.scrollable').height(h + 'px');
});
});