Fixed example.html

This commit is contained in:
ragaskar 2009-06-16 07:47:25 -07:00
parent ff5e1d337a
commit 7b3cfab563
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@
</h1>
<div id="results"></div>
<script type="text/javascript">
Jasmine.getEnv().execute();
jasmine.getEnv().execute();
setTimeout(function () {
document.getElementById('results').innerHTML = 'It\'s alive! :' +
(Jasmine.getEnv().currentRunner.results.passedCount === 1);
(jasmine.getEnv().currentRunner.getResults().passedCount === 1);
}, 250);
</script>
</body>