We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 368655b commit 51e7fc8Copy full SHA for 51e7fc8
samples/hello-js/hello-js.html
@@ -4,8 +4,12 @@
4
</head>
5
<body>
6
<h1>Hello External JavaScript Library!</h1>
7
+ <script type="text/javascript" src="out/goog/base.js"></script>
8
<script type="text/javascript" src="my-external-lib.js"></script>
9
<script type="text/javascript" src="hello-js.js"></script>
10
+ <script>
11
+ goog.require('hello_js.core');
12
+ </script>
13
<script>
14
hello_js.core.popup_msg('JavaScript calling a ClojureScript function');
15
</script>
samples/hello-js/src/hello/core.cljs samples/hello-js/src/hello-js/core.cljs
0 commit comments