Files
kotlin/libraries/examples/browser-example/sample.html
2012-05-26 07:48:37 +01:00

19 lines
383 B
HTML

<html>
<head>
</head>
<body>
<h1>Kotlin Sample</h1>
<div id="foo">
</div>
<script type="text/javascript" src="src/js/jquery.js"></script>
<script type="text/javascript" src="target/js/kotlin-lib.js"></script>
<script type="text/javascript" src="target/js/browser-example.js"></script>
<script type="text/javascript">
$(document).ready(sample.myApp)
</script>
</body>
</html>