Skip to content

Instantly share code, notes, and snippets.

@josdirksen
Created March 8, 2015 07:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josdirksen/da734cdc6e92cf6302c6 to your computer and use it in GitHub Desktop.
Save josdirksen/da734cdc6e92cf6302c6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html ng-app="helloworld">
<head>
<meta charset="UTF-8">
<title>Minimal angular.js</title>
<link rel="stylesheet" href="css/foundation.css" />
<style>
.tile {
background: #ffeeee;
}
</style>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>Sample angular.js / foundation / scala.js app</h1>
</div>
</div>
<div ng-view></div>
<!-- Include Scala.js compiled code -->
<script type="text/javascript" src="../../../target/scala-2.11/scalajs-fastopt.js"></script>
<script type="text/javascript" src="../../../target/scala-2.11/scalajs-jsdeps.js"></script>
<script type="text/javascript" src="../../../target/scala-2.11/scalajs-launcher.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment