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
3b010a1f
Commit
3b010a1f
authored
Nov 03, 2012
by
Sindre Sorhus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various cleanup and fixes
parent
f9ce8fb5
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
26 deletions
+10
-26
architecture-examples/emberjs/css/app.css
architecture-examples/emberjs/css/app.css
+0
-5
architecture-examples/emberjs/index.html
architecture-examples/emberjs/index.html
+0
-1
architecture-examples/gwt/css/app.css
architecture-examples/gwt/css/app.css
+0
-1
architecture-examples/gwt/index.html
architecture-examples/gwt/index.html
+8
-10
architecture-examples/gwt/src/com/todo/client/ToDoView.ui.xml
...itecture-examples/gwt/src/com/todo/client/ToDoView.ui.xml
+1
-2
architecture-examples/knockoutjs/js/app.js
architecture-examples/knockoutjs/js/app.js
+1
-1
dependency-examples/emberjs_require/css/app.css
dependency-examples/emberjs_require/css/app.css
+0
-6
No files found.
architecture-examples/emberjs/css/app.css
deleted
100644 → 0
View file @
f9ce8fb5
/* Helpers */
.hidden
{
display
:
none
}
architecture-examples/emberjs/index.html
View file @
3b010a1f
...
...
@@ -5,7 +5,6 @@
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<title>
ember.js • TodoMVC
</title>
<link
rel=
"stylesheet"
href=
"../../assets/base.css"
>
<link
rel=
"stylesheet"
href=
"css/app.css"
>
<!--[if IE]>
<script src="../../assets/ie.js"></script>
<![endif]-->
...
...
architecture-examples/gwt/css/app.css
View file @
3b010a1f
#todo-count
span
.word
{
font-weight
:
normal
;
}
...
...
architecture-examples/gwt/index.html
View file @
3b010a1f
<!doctype html>
<html>
<html
lang=
"en"
>
<head>
<meta
http-equiv=
"content-type"
content=
"text/html; charset=UTF
-8"
>
<meta
charset=
"utf
-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"../../assets/base.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"css/app.css"
>
<title>
GWT • TodoMVC
</title>
<script
type=
"text/javascript"
language=
"javascript"
src=
"gwttodo/gwttodo.nocache.js"
></script>
<link
rel=
"stylesheet"
href=
"../../assets/base.css"
>
<link
rel=
"stylesheet"
href=
"css/app.css"
>
<!--[if IE]>
<script src="../../assets/ie.js"></script>
<![endif]-->
</head>
<body>
<noscript>
<div
style=
"width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"
>
Your web browser must have JavaScript enabled in order for this application to display correctly.
</div>
</noscript>
<script
src=
"gwttodo/gwttodo.nocache.js"
></script>
</body>
</html>
architecture-examples/gwt/src/com/todo/client/ToDoView.ui.xml
View file @
3b010a1f
...
...
@@ -23,7 +23,7 @@
<span
id=
"todo-count"
>
<strong
class=
"number"
ui:field=
"remainingTasksCount"
></strong>
<span
class=
"word"
ui:field=
"remainingTasksLabel"
></span>
left
.
left
</span>
<g:Button
ui:field=
"clearCompleted"
>
Clear completed (
<span
class=
"number-done"
ui:field=
"clearTasksCount"
></span>
)
...
...
@@ -33,7 +33,6 @@
<footer
id=
"info"
>
<p>
Double-click to edit a todo
</p>
<p>
Template by
<a
href=
"http://sindresorhus.com"
>
Sindre Sorhus
</a></p>
<p>
Created by
<a
href=
"http://www.scottlogic.co.uk/blog/colin/"
>
Colin Eberhardt
</a></p>
<p>
Part of
<a
href=
"http://todomvc.com"
>
TodoMVC
</a></p>
</footer>
...
...
architecture-examples/knockoutjs/js/app.js
View file @
3b010a1f
/*global ko
, crossroads
*/
/*global ko */
(
function
()
{
'
use strict
'
;
...
...
dependency-examples/emberjs_require/css/app.css
View file @
3b010a1f
/* Helpers */
.hidden
{
display
:
none
}
/* Mocha */
#mocha
h1
,
h2
{
...
...
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