Datasnipper templates for their Weglot translation tool. Pipedrive's footer still needs the translations. Big ideas notes - finished their custom end of quiz screen items.
This commit is contained in:
@ -445,16 +445,42 @@ let eoqMutationObserver = () => {
|
||||
// These if statements are all for the Mathematical Learning Experiences (LP01. Course03)
|
||||
// Just replace the activity name in the if statement and replace the copy between > < in the action
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Course Pre-Assessment') {
|
||||
// console.log("Course pre-assessment activity!");
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for taking the time to share your existing knowledge through the course pre-assessment.</h2>";
|
||||
}
|
||||
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Dig In Activity') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Your responses have been submitted. You may continue with the course.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Investigate Activity') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Your responses have been submitted. You may continue with the course.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Attend to Precision Activity') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for sharing your thinking about how teachers can support students in attending to precision in a mathematics classroom. The next video will provide insight into how each example relates to this practice.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Learning Target Check-In') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Your self-reflection toward our course learning target and success criteria has been submitted. Thank you!</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Construct Viable Arguments and Critique the Reasoning of Others Activity') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for sharing your thinking about how teachers can support students in constructing viable arguments and critiquing the reasoning of others. The next video will provide insight into how each example relates to this practice.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Module 4b: Classroom Connections') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for sharing your thinking around how each classroom supported mathematical learning experiences through communicating about purpose and content and using questioning and discussion techniques.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Learning Target Check-In') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Your self-reflection toward our course learning target and success criteria has been submitted. Thank you!</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Module 4d: Classroom Connections') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for sharing your thinking around how each classroom supported mathematical learning experiences through engaging students in learning experiences and using assessment for learning.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Take & Try Reflection') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Your Take & Try reflection responses have been submitted.</h2>";
|
||||
}
|
||||
if (document.querySelector('[data-test="activity-title"]').innerHTML.trim() === 'Course Feedback') {
|
||||
document.querySelector('[data-test="quiz-summary"]').innerHTML = "<h2 data-test='summary-headline' class='H2-sc-1bdnwwu-0 dZdbwG'>Thank you for taking the time to provide feedback on your experiences learning in this course.</h2>";
|
||||
}
|
||||
observer.disconnect();
|
||||
observer.observe(document, config);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
observer.observe(document, config);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user