Skip to content

Commit 9145ef6

Browse files
Labs: Tweak completion stamp for instructors (#454)
Signed-off-by: David A. Wheeler <[email protected]>
1 parent dc8afc8 commit 9145ef6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/labs/checker.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ function makeStamp() {
268268
// when they're in a "secure state". We don't need the hash to be
269269
// cryptographic, since the data is clearly in view. Use a simple one.
270270
let hash = cyrb64Hash(resultBeginning);
271-
return `${resultBeginning} ${hash}`;
271+
return `Completed ${resultBeginning} ${hash}`;
272272
}
273273

274274
/**
@@ -299,6 +299,8 @@ function runCheck() {
299299
correctStamp = document.getElementById('correctStamp');
300300
if (correctStamp) {
301301
correctStamp.innerHTML = makeStamp();
302+
correctStamp.title =
303+
'This completion stamp is for instructors using these labs.';
302304
}
303305

304306
// Use a timeout so the underlying page will *re-render* before the

0 commit comments

Comments
 (0)