Created
November 18, 2016 10:18
-
-
Save xuxucode/1d06b3c007373334f5393dfda1aee398 to your computer and use it in GitHub Desktop.
todo elm
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> | |
<meta charset="UTF-8"> | |
<title>Elm • TodoMVC</title> | |
<script type="text/javascript" src="myelm.js"></script> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
</body> | |
<script type="text/javascript"> | |
var storedState = localStorage.getItem('elm-todo-save'); | |
var startingState = storedState ? JSON.parse(storedState) : null; | |
var todomvc = Elm.MyTodo.fullscreen(startingState); | |
todomvc.ports.setStorage.subscribe(function(state) { | |
localStorage.setItem('elm-todo-save', JSON.stringify(state)); | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment