From d4e12a6ce39541212356445718b02aa5d361db85 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Thu, 29 Oct 2015 15:58:46 +0200 Subject: [PATCH] typo --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");