diff --git a/labscore/cardstack/DynamicCardStack.js b/labscore/cardstack/DynamicCardStack.js index 03a03b0..5b1ebb1 100644 --- a/labscore/cardstack/DynamicCardStack.js +++ b/labscore/cardstack/DynamicCardStack.js @@ -58,8 +58,6 @@ class DynamicCardStack { this.loopPages = options.loop || true; this.expires = options.expires || 5*60*1000; - this.uniqueId = (Date.now()*Math.random()).toString(36); - this.stackCache = {}; this.pageState = []; this.currentSelectedSubcategory = null; @@ -76,7 +74,6 @@ class DynamicCardStack { * Kills the dynamic card stack. */ async kill(clearComponents){ - console.log("killing " + this.uniqueId) clearTimeout(this.timeout); this.listener.clear();