Commit 1d0cf45d authored by Sindre Sorhus's avatar Sindre Sorhus

Merge pull request #366 from passy/b-strong-consistency

Updated Dart and ExtJS to use <strong> instead of <b>
parents 550f5e1d 683952a2
...@@ -99,7 +99,7 @@ class TodoApp { ...@@ -99,7 +99,7 @@ class TodoApp {
} }
checkAllCheckboxElement.checked = (complete == todoWidgets.length); checkAllCheckboxElement.checked = (complete == todoWidgets.length);
var left = todoWidgets.length - complete; var left = todoWidgets.length - complete;
countElement.innerHtml = '<b>${left}</b> item${left != 1 ? 's' : ''} left'; countElement.innerHtml = '<strong>${left}</strong> item${left != 1 ? 's' : ''} left';
if (complete == 0) { if (complete == 0) {
clearCompletedElement.style.display = 'none'; clearCompletedElement.style.display = 'none';
} else { } else {
......
...@@ -126,7 +126,7 @@ Ext.define('Todo.controller.Tasks', { ...@@ -126,7 +126,7 @@ Ext.define('Todo.controller.Tasks', {
checkedCount = totalCount - count; checkedCount = totalCount - count;
if (count) { if (count) {
info = '<b>' + count + '</b> item' + (count > 1 ? 's' : '') + ' left.'; info = '<strong>' + count + '</strong> item' + (count > 1 ? 's' : '') + ' left.';
} }
if (checkedCount) { if (checkedCount) {
......
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