updated basic example to actually redraw on window resize

This commit is contained in:
Bala Clark 2011-09-06 12:49:59 +02:00
parent 26264f4f3e
commit f4b41625cf

View file

@ -41,7 +41,9 @@
); );
book.draw(); book.draw();
window.onresize = book.drawPage; $(window).resize(function(event) {
book.draw();
});
</script> </script>
</body> </body>
</html> </html>