allow score 0

This commit is contained in:
Victor Shnayder
2012-11-20 18:25:25 -05:00
parent edd3277597
commit 26f033b79f

View File

@@ -99,7 +99,7 @@ class StaffGrading
@score_selection_container.html('Choose score: ')
# Now create new labels and inputs for each possible score.
for score in [1..@max_score]
for score in [0..@max_score]
id = 'score-' + score
label = """<label for="#{id}">#{score}</label>"""