From 3efa803321314e8562633a2b77c9edcd68c8d91e Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Wed, 28 Aug 2013 17:27:34 -0400 Subject: [PATCH] Fix bug where we don't re-disable a button if they uncheck that the verification pictures look good. --- lms/templates/verify_student/photo_verification.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/templates/verify_student/photo_verification.html b/lms/templates/verify_student/photo_verification.html index 3a6ea9841c..4146af17d7 100644 --- a/lms/templates/verify_student/photo_verification.html +++ b/lms/templates/verify_student/photo_verification.html @@ -135,6 +135,9 @@ if (this.checked) { $("#pay_button_frame").removeClass('disabled'); } + else { + $("#pay_button_frame").addClass('disabled'); + } }); $("#pay_button_frame").addClass('disabled');