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

Meteor app cleanup

Remove trailing whitespace
Convert to tabs
Improve readme
Update base.css
parent e904feb4
...@@ -194,4 +194,4 @@ if (Meteor.is_client) { ...@@ -194,4 +194,4 @@ if (Meteor.is_client) {
Todos.remove({completed: true}); Todos.remove({completed: true});
} }
}; };
}; }
\ No newline at end of file
/* base.css overrides */
#filters li a { #filters li a {
text-transform:capitalize; text-transform: capitalize;
} }
...@@ -404,3 +404,7 @@ label[for='toggle-all'] { ...@@ -404,3 +404,7 @@ label[for='toggle-all'] {
background: none; background: none;
} }
} }
.hidden{
display:none;
}
\ No newline at end of file
Meteor TodoMVC # Meteor TodoMVC app
---------------
A todo app built using [Meteor](http://meteor.com), inspired by [TodoMVC](https://github.com/addyosmani/todomvc). A todo app built using [Meteor](http://meteor.com), inspired by [TodoMVC](https://github.com/addyosmani/todomvc).
Demo online: http://todomvcapp.meteor.com [Demo](http://todomvcapp.meteor.com)
Setup
======= ## Setup
* Install Meteor ```$ curl install.meteor.com | /bin/sh``` * Install Meteor ```$ curl install.meteor.com | /bin/sh```
* $ cd meteor * $ cd meteor
* $ meteor * $ meteor
The app should now be running on http://localhost:3000/ The app should now be running on http://localhost:3000
To deploy to meteor.com simply do this: To deploy to meteor.com simply run:
```$ meteor deploy myapp.meteor.com``` ```$ meteor deploy myapp.meteor.com```
Credits
=======
- Stylesheet from [TodoMVC](https://github.com/addyosmani/todomvc)
- Meteor from [Meteor](http://meteor.com)
- This app by [MStumpp](https://github.com/MStumpp)
License ## Credits
=======
Public Domain Created by [MStumpp](https://github.com/MStumpp)
\ No newline at end of file
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