Commit ca8ed14d authored by Michał Sajnóg's avatar Michał Sajnóg

Updating Meteor to the newest version and fixing handlebars in templates to...

Updating Meteor to the newest version and fixing handlebars in templates to work properly with new release of Meteor
parent 19091282
0.7.0.1
METEOR@1.0.3.1
\ No newline at end of file
......@@ -27,7 +27,7 @@
<template name="main">
<section id="main">
<input id="toggle-all" type="checkbox" {{#unless todos_not_completed}}checked="checked"{{/unless}}>
<input id="toggle-all" type="checkbox" checked="{{#unless todos_not_completed}}checked{{/unless}}">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list">
{{#each todos}}
......@@ -40,7 +40,7 @@
<template name="todo">
<li class="{{#if todo_completed}}completed{{/if}}{{#if todo_editing}}editing{{/if}}">
<div class="view">
<input class="toggle" type="checkbox" {{#if todo_completed}}checked="checked"{{/if}}>
<input class="toggle" type="checkbox" checked="{{#if todo_completed}}checked{{/if}}">
<label>{{title}}</label>
<button class="destroy"></button>
</div>
......
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