Skip to content

Instantly share code, notes, and snippets.

@aliirz
Created January 12, 2015 04:52
Show Gist options
  • Save aliirz/7496122b66d27b1523d0 to your computer and use it in GitHub Desktop.
Save aliirz/7496122b66d27b1523d0 to your computer and use it in GitHub Desktop.
Backgrid cell highlight
if (this.question_meta.get('correct_prefix') ===
correct_answer.get(
'response').prefix) {
this.$el.addClass('correct_td');
}
else {
this.$el.removeClass('correct_td');
}
this.$el.text(selected);
this.delegateEvents();
return this;
.correct_td {
background-color: #577432;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment