mirror of
https://github.com/lubosz/overte.git
synced 2025-08-12 21:46:27 +02: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;
|
currentStepNum = -1;
|
||||||
currentStep = null;
|
currentStep = null;
|
||||||
startedTutorialAt = Date.now();
|
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() : "";
|
tutorialID = Script.generateUUID ? Script.generateUUID() : "";
|
||||||
STEPS = [
|
STEPS = [
|
||||||
new stepStart("start"),
|
new stepStart("start"),
|
||||||
|
|
Loading…
Reference in a new issue