Created
August 10, 2015 03:28
-
-
Save joeeames/a1bcaf01970006f1c0a8 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<head> | |
<title>Angular 2 Demo</title> | |
<script src="https://cdn.firebase.com/js/client/2.2.9/firebase.js"></script> | |
<script src="libs/system.js"></script> | |
<script src="config.js"></script> | |
<link rel="stylesheet" href="css/bootstrap.min.css"> | |
</head> | |
<body class="container"> | |
<todo-app></todo-app> | |
</body> | |
</html> |
This file contains 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
var fb = new Firebase('https://ng2-thatconf.firebaseio.com/todoItems/'); | |
var todoItems = []; | |
fb.on("child_added", function(snapshot) { | |
todoItems.push(snapshot.val()); | |
}) | |
export {todoItems}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment