defer calling things until the document is ready

This commit is contained in:
Sven Fuchs 2013-02-26 23:39:03 +01:00
parent 47765ba8c0
commit 5ae74ddcdc

View File

@ -15,8 +15,10 @@
<link rel="stylesheet" href="/styles/app.css"> <link rel="stylesheet" href="/styles/app.css">
<script src="/scripts/app.js"></script> <script src="/scripts/app.js"></script>
<script> <script>
minispade.require('travis') $(function() {
Travis.run() minispade.require('travis');
Travis.run();
});
</script> </script>
</head> </head>
<body id="home"></body> <body id="home"></body>