From e8a48d6144d4163da1154b1c26d2708196ef36f9 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Tue, 10 Sep 2013 16:41:29 -0400 Subject: [PATCH] Update JS to reflect new link IDs to unbreak the top nav status indicator. --- lms/static/js/verify_student/photocapture.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/static/js/verify_student/photocapture.js b/lms/static/js/verify_student/photocapture.js index 5c16294177..32164f1728 100644 --- a/lms/static/js/verify_student/photocapture.js +++ b/lms/static/js/verify_student/photocapture.js @@ -209,11 +209,11 @@ $(document).ready(function() { // add in handlers to add/remove the correct classes to the body // when moving between steps - $('#face_next_button').click(function(){ + $('#face_next_link').click(function(){ $('body').addClass('step-photos-id').removeClass('step-photos-cam') }) - $('#photo_id_next_button').click(function(){ + $('#photo_id_next_link').click(function(){ $('body').addClass('step-review').removeClass('step-photos-id') })