Created
March 8, 2015 07:14
-
-
Save josdirksen/da734cdc6e92cf6302c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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