Last active
December 28, 2020 16:47
-
-
Save davidbwaters/3992a4b1cde59c3964d6bb10d8dc8ec6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$('.lecture_complete_button').click((evt) => { | |
const progBar = document.querySelector('.progressbar') | |
if (progBar.style.minWidth !== '50%') { | |
progBar.style.minWidth = '50%' | |
document.querySelector('span.percentage').innerText = '50%' | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment