Hints back on main screen

This commit is contained in:
Jason White
2016-10-11 16:28:23 -04:00
parent 2699a67c8a
commit 7323a1fa85
5 changed files with 30 additions and 2 deletions

View File

@ -24,7 +24,11 @@ function($,
},
toggleLabel: function() {
this.$el.text((showing) ? 'Hide hints' : 'Show hints');
if (this.isVisible()) {
$('show-hints-button').text('Hide hints');
} else {
$('show-hints-button').text('Show hints');
}
},
render:function() {