Skip to content

Instantly share code, notes, and snippets.

@xuxucode
Created November 18, 2016 10:18
Show Gist options
  • Save xuxucode/1d06b3c007373334f5393dfda1aee398 to your computer and use it in GitHub Desktop.
Save xuxucode/1d06b3c007373334f5393dfda1aee398 to your computer and use it in GitHub Desktop.
todo elm
<!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