Commit 70d77154 authored by Pascal Hartig's avatar Pascal Hartig

Fixed <b> vs <strong> inconsistency in Spine app

As reported by @petermichaux in #350.
parent 8552baf4
......@@ -135,7 +135,7 @@
};
active = Todo.active().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 + ")");
};
......
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