Skip to content

Commit 208824d

Browse files
authored
Merge pull request #8 from sitorush/dom-not-ready
Move the scripts to the bottom, make sure the DOM is ready
2 parents af39c12 + 1093e10 commit 208824d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ch05/io_monad_tests/io_monad_test.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
<html>
33
<head>
44

5-
<script src="https://cdn.rawgit.com/lodash/lodash/4.5.1/dist/lodash.min.js"></script>
6-
<script src="io_monad_test.js"></script>
7-
85
<meta name="description" content="IO Monad">
96
<meta charset="utf-8">
107
<title>Playing with IO Monad</title>
@@ -15,6 +12,9 @@
1512
Using the IO Monad to cause side effects to happen
1613
functionally
1714
-->
18-
<div id="student-name">alonzo church</div>
15+
<div id="student-name">alonzo church</div>
16+
17+
<script src="https://cdn.rawgit.com/lodash/lodash/4.5.1/dist/lodash.min.js"></script>
18+
<script src="io_monad_test.js"></script>
1919
</body>
20-
</html>
20+
</html>

0 commit comments

Comments
 (0)