We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems the restart lesson button stopped working at some point. This is because it has the wrong id.
From main_new.jsp:
<button class="btn btn-primary btn-xs help-button" id="show-hints-button">Show Hints</button> <button class="btn btn-xs help-button" id="show-hints-button">Restart Lesson</button>
Switching the id back to the proper one makes it work again :)
<button class="btn btn-xs help-button" id="restart-lesson-button">Restart Lesson</button>
The text was updated successfully, but these errors were encountered:
6c92f06
Merge pull request #214 from span/restart-button
35bd866
Fix #213 by changing the id of the restart button to the correct id
No branches or pull requests
It seems the restart lesson button stopped working at some point. This is because it has the wrong id.
From main_new.jsp:
Switching the id back to the proper one makes it work again :)
The text was updated successfully, but these errors were encountered: