mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Add comment to tutorial.js generateUUID usage
This commit is contained in:
parent
8fe6278831
commit
4148abe28f
1 changed files with 3 additions and 0 deletions
|
@ -982,6 +982,9 @@ TutorialManager = function() {
|
|||
currentStepNum = -1;
|
||||
currentStep = null;
|
||||
startedTutorialAt = Date.now();
|
||||
|
||||
// Old versions of interface do not have the Script.generateUUID function.
|
||||
// If Script.generateUUID is not available, default to an empty string.
|
||||
tutorialID = Script.generateUUID ? Script.generateUUID() : "";
|
||||
STEPS = [
|
||||
new stepStart("start"),
|
||||
|
|
Loading…
Reference in a new issue