Created
October 18, 2013 19:44
-
-
Save efleming969/7047054 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> | |
| <h1>Todo List</h1> | |
| <select id="tasks-filter"> | |
| <option value=0>All</option> | |
| <option value=1>Incomplete</option> | |
| <option value=2>Complete</option> | |
| </select> | |
| <ul id="tasks-list"></ul> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script> | |
| <script src="/index.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment