Commit b0624d35 authored by Aaron Boushley's avatar Aaron Boushley

Converting from spaces to tabs.

parent 8f9ee834
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Backbone.js</title> <title>Backbone.js</title>
<link rel="stylesheet" href="css/app.css"/> <link rel="stylesheet" href="css/app.css"/>
</head> </head>
<body> <body>
<div id="todoapp"> <div id="todoapp">
<header> <header>
<h1>Todos</h1> <h1>Todos</h1>
<input id="new-todo" type="text" placeholder="What needs to be done?"> <input id="new-todo" type="text" placeholder="What needs to be done?">
...@@ -15,49 +15,49 @@ ...@@ -15,49 +15,49 @@
<section id="main"> <section id="main">
<input id="toggle-all" type="checkbox"> <input id="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label> <label for="toggle-all">Mark all as complete</label>
<ul id="todo-list"> <ul id="todo-list">
</ul> </ul>
</section> </section>
<footer> <footer>
<a id="clear-completed">Clear completed</a> <a id="clear-completed">Clear completed</a>
<div id="todo-count"></div> <div id="todo-count"></div>
</footer> </footer>
</div> </div>
<div id="instructions"> <div id="instructions">
Double-click to edit a todo. Double-click to edit a todo.
</div> </div>
<div id="credits"> <div id="credits">
Created by Created by
<br /> <br />
<a href="http://jgn.me/">J&eacute;r&ocirc;me Gravel-Niquet</a>. <a href="http://jgn.me/">J&eacute;r&ocirc;me Gravel-Niquet</a>.
<br />Cleanup, edits: <a href="http://addyosmani.com">Addy Osmani</a>, <a href="http://github.com/boushley">Aaron Boushley</a>. <br />Cleanup, edits: <a href="http://addyosmani.com">Addy Osmani</a>, <a href="http://github.com/boushley">Aaron Boushley</a>.
</div> </div>
<script src="js/libs/json2.js"></script> <script src="js/libs/json2.js"></script>
<script src="js/libs/jquery-1.7.1.min.js"></script> <script src="js/libs/jquery-1.7.1.min.js"></script>
<script src="js/libs/underscore.js"></script> <script src="js/libs/underscore.js"></script>
<script src="js/libs/backbone.js"></script> <script src="js/libs/backbone.js"></script>
<script src="js/libs/backbone-localstorage.js"></script> <script src="js/libs/backbone-localstorage.js"></script>
<script src="js/app.js"></script> <script src="js/app.js"></script>
<!-- Templates --> <!-- Templates -->
<script type="text/template" id="item-template"> <script type="text/template" id="item-template">
<div class="view"> <div class="view">
<input class="toggle" type="checkbox" <%= done ? 'checked="checked"' : '' %> /> <input class="toggle" type="checkbox" <%= done ? 'checked="checked"' : '' %> />
<label><%= title %></label> <label><%= title %></label>
<a class="destroy"></a> <a class="destroy"></a>
</div> </div>
<input class="edit" type="text" value="<%= title %>" /> <input class="edit" type="text" value="<%= title %>" />
</script> </script>
<script type="text/template" id="stats-template"> <script type="text/template" id="stats-template">
<% if (done) { %> <% if (done) { %>
<a id="clear-completed">Clear <%= done %> completed <%= done == 1 ? 'item' : 'items' %></a> <a id="clear-completed">Clear <%= done %> completed <%= done == 1 ? 'item' : 'items' %></a>
<% } %> <% } %>
<div class="todo-count"><b><%= remaining %></b> <%= remaining == 1 ? 'item' : 'items' %> left</div> <div class="todo-count"><b><%= remaining %></b> <%= remaining == 1 ? 'item' : 'items' %> left</div>
</script> </script>
</body> </body>
</html> </html>
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment