Browse Source

Commit 9.6: Display username next to task.

Frederic G. MARAND 8 years ago
parent
commit
bc43f8b483
1 changed files with 1 additions and 1 deletions
  1. 1 1
      simple-todos.html

+ 1 - 1
simple-todos.html

@@ -37,6 +37,6 @@
   <li class="{{#if checked}}checked{{/if}}">
     <button class="delete">&times;</button>
     <input type="checkbox" checked="{{checked}}" class="toggle-checked" />
-    <span class="text">{{text}}</span>
+    <span class="text"><strong>{{username}}</strong> - {{text}}</span>
   </li>
 </template>