Commit e6854934 authored by Addy Osmani's avatar Addy Osmani

Merge pull request #358 from passy/patch-1

Fixed <b> vs <strong> inconsistency in Spine app
parents 5a122e66 70d77154
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
}; };
active = Todo.active().length; active = Todo.active().length;
completed = Todo.completed().length; completed = Todo.completed().length;
this.count.html("<b>" + active + "</b> " + (text(active)) + " left"); this.count.html("<strong>" + active + "</strong> " + (text(active)) + " left");
return this.clearCompleted.text("Clear completed (" + completed + ")"); return this.clearCompleted.text("Clear completed (" + completed + ")");
}; };
......
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