From efbf55c0d759b38d0a119f2040f009f893030752 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 7 Dec 2016 09:04:57 -0800 Subject: [PATCH] Remove unused stepWelcome from tutorial --- tutorial/tutorial.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/tutorial/tutorial.js b/tutorial/tutorial.js index 242fc849f6..4220a15ae5 100644 --- a/tutorial/tutorial.js +++ b/tutorial/tutorial.js @@ -415,29 +415,6 @@ stepEnableControllers.prototype = { } }; -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// -// // -// STEP: Welcome // -// // -/////////////////////////////////////////////////////////////////////////////// -var stepWelcome = function(name) { - this.tag = name; -} -stepWelcome.prototype = { - start: function(onFinish) { - this.timerID = Script.setTimeout(onFinish, 8000); - showEntitiesWithTag(this.tag); - }, - cleanup: function() { - if (this.timerID) { - Script.clearTimeout(this.timerID); - this.timerID = null; - } - hideEntitiesWithTag(this.tag); - } -}; - /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////