diff --git a/js/main.js b/js/main.js index c105833f..7b4dcbfb 100644 --- a/js/main.js +++ b/js/main.js @@ -207,7 +207,7 @@ EmoteModule.prototype.getNodes = function(node) { var treeWalker = document.createTreeWalker(node, NodeFilter.SHOW_TEXT, null, false); while(next = treeWalker.nextNode()) { - consol.log("NEXT: " + next); + console.log("NEXT: " + next); nodes.push(next); } console.log("<=GETNODES");