From 26f033b79ffe9cda25f870396f6cb645310fbab0 Mon Sep 17 00:00:00 2001 From: Victor Shnayder Date: Tue, 20 Nov 2012 18:25:25 -0500 Subject: [PATCH] allow score 0 --- lms/static/coffee/src/staff_grading/staff_grading.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/coffee/src/staff_grading/staff_grading.coffee b/lms/static/coffee/src/staff_grading/staff_grading.coffee index ffdb28ccfd..5edc5e5c35 100644 --- a/lms/static/coffee/src/staff_grading/staff_grading.coffee +++ b/lms/static/coffee/src/staff_grading/staff_grading.coffee @@ -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 = """"""