Forráskód Böngészése

Commit 9.6: Display username next to task.

Frederic G. MARAND 8 éve
szülő
commit
bc43f8b483
1 módosított fájl, 1 hozzáadás és 1 törlés
  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>