Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eugene Shen
todomvc
Commits
af9113b8
Commit
af9113b8
authored
Apr 14, 2012
by
Sindre Sorhus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot the `d` in completed and fix sentence
parent
3a3cdf2e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
assets/base.css
assets/base.css
+1
-1
template/index.html
template/index.html
+4
-2
No files found.
assets/base.css
View file @
af9113b8
...
...
@@ -258,7 +258,7 @@ WebKit supports styling of inputs */
transition
:
color
0.4s
;
}
#todo-list
li
.complete
label
{
#todo-list
li
.complete
d
label
{
color
:
#a9a9a9
;
text-decoration
:
line-through
;
}
...
...
template/index.html
View file @
af9113b8
...
...
@@ -13,12 +13,14 @@
<h1>
todos
</h1>
<input
id=
"new-todo"
placeholder=
"What needs to be done?"
autofocus
>
</header>
<!-- this section should hidden by default and shown when there are todos -->
<!-- this section should
be
hidden by default and shown when there are todos -->
<section
id=
"main"
>
<input
id=
"toggle-all"
type=
"checkbox"
>
<label
for=
"toggle-all"
>
Mark all as complete
</label>
<ul
id=
"todo-list"
>
<li
class=
"complete"
>
<!-- these are here just to show the structure of the list items -->
<!-- list items should get the class `editing` when editing and `completed` when marked as completed -->
<li
class=
"completed"
>
<div
class=
"view"
>
<input
class=
"toggle"
type=
"checkbox"
checked
>
<label>
Create a TodoMVC template
</label>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment