This commit is contained in:
Jiiks 2015-10-29 15:58:46 +02:00
parent bbf2c91f8c
commit d4e12a6ce3
1 changed files with 1 additions and 1 deletions

View File

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