Created
January 12, 2015 04:52
-
-
Save aliirz/7496122b66d27b1523d0 to your computer and use it in GitHub Desktop.
Backgrid cell highlight
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.correct_td { | |
background-color: #577432; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment