Commit 1806c754 by Tim Krones

Hide "Submit", "Next Step", "Review grade" buttons when displaying

review step.
parent f07502fe
...@@ -84,6 +84,7 @@ function MentoringWithStepsBlock(runtime, element) { ...@@ -84,6 +84,7 @@ function MentoringWithStepsBlock(runtime, element) {
reviewStep.show(); reviewStep.show();
submitDOM.hide(); submitDOM.hide();
nextDOM.hide(); nextDOM.hide();
reviewDOM.hide();
tryAgainDOM.removeAttr('disabled'); tryAgainDOM.removeAttr('disabled');
tryAgainDOM.show(); tryAgainDOM.show();
} }
...@@ -127,7 +128,7 @@ function MentoringWithStepsBlock(runtime, element) { ...@@ -127,7 +128,7 @@ function MentoringWithStepsBlock(runtime, element) {
function showGrade() { function showGrade() {
cleanAll(); cleanAll();
reviewStep.show(); showReviewStep();
} }
function handleTryAgain(result) { function handleTryAgain(result) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment