We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc8afc8 commit 9145ef6Copy full SHA for 9145ef6
docs/labs/checker.js
@@ -268,7 +268,7 @@ function makeStamp() {
268
// when they're in a "secure state". We don't need the hash to be
269
// cryptographic, since the data is clearly in view. Use a simple one.
270
let hash = cyrb64Hash(resultBeginning);
271
- return `${resultBeginning} ${hash}`;
+ return `Completed ${resultBeginning} ${hash}`;
272
}
273
274
/**
@@ -299,6 +299,8 @@ function runCheck() {
299
correctStamp = document.getElementById('correctStamp');
300
if (correctStamp) {
301
correctStamp.innerHTML = makeStamp();
302
+ correctStamp.title =
303
+ 'This completion stamp is for instructors using these labs.';
304
305
306
// Use a timeout so the underlying page will *re-render* before the
0 commit comments