3
0
Fork 0
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:
Ryan Huffman 2016-10-28 16:17:54 -07:00
parent 8fe6278831
commit 4148abe28f

View file

@ -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"),