load star when document's ready

This commit is contained in:
Gwenhael Le Moine 2011-07-13 20:26:33 +02:00
parent bbffd9444a
commit 6b803219ca

View file

@ -50,7 +50,9 @@
<script src="js/star.js"></script> <script src="js/star.js"></script>
<script> <script>
initialize_a_star( "#main" ); $(document).ready(function() {
initialize_a_star( "#main" );
});
</script> </script>
</body> </body>
</html> </html>