Commit 3b010a1f authored by Sindre Sorhus's avatar Sindre Sorhus

Various cleanup and fixes

parent f9ce8fb5
/* Helpers */
.hidden {
display: none
}
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ember.js • TodoMVC</title> <title>ember.js • TodoMVC</title>
<link rel="stylesheet" href="../../assets/base.css"> <link rel="stylesheet" href="../../assets/base.css">
<link rel="stylesheet" href="css/app.css">
<!--[if IE]> <!--[if IE]>
<script src="../../assets/ie.js"></script> <script src="../../assets/ie.js"></script>
<![endif]--> <![endif]-->
......
#todo-count span.word { #todo-count span.word {
font-weight: normal; font-weight: normal;
} }
......
<!doctype html> <!doctype html>
<html> <html lang="en">
<head> <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"> <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> <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> </head>
<body> <body>
<noscript> <script src="gwttodo/gwttodo.nocache.js"></script>
<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>
</body> </body>
</html> </html>
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<span id="todo-count"> <span id="todo-count">
<strong class="number" ui:field="remainingTasksCount"></strong> <strong class="number" ui:field="remainingTasksCount"></strong>
<span class="word" ui:field="remainingTasksLabel"></span> <span class="word" ui:field="remainingTasksLabel"></span>
left. left
</span> </span>
<g:Button ui:field="clearCompleted"> <g:Button ui:field="clearCompleted">
Clear completed (<span class="number-done" ui:field="clearTasksCount"></span>) Clear completed (<span class="number-done" ui:field="clearTasksCount"></span>)
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
<footer id="info"> <footer id="info">
<p>Double-click to edit a todo</p> <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>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> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer> </footer>
......
/*global ko, crossroads */ /*global ko */
(function() { (function() {
'use strict'; 'use strict';
......
/* Helpers */
.hidden {
display: none
}
/* Mocha */ /* Mocha */
#mocha h1, h2 { #mocha h1, h2 {
......
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