From d56b05c07e7616de73ae14d54beeb4d96fa3cb51 Mon Sep 17 00:00:00 2001 From: "carl@connectedbrains.com" Date: Mon, 1 Jun 2015 14:17:59 -0700 Subject: [PATCH] removed console.log --- browser/gom.js | 2 -- lib/mixins/helpers.coffee | 2 -- 2 files changed, 4 deletions(-) diff --git a/browser/gom.js b/browser/gom.js index f83bc19..4a74a0f 100644 --- a/browser/gom.js +++ b/browser/gom.js @@ -189,11 +189,9 @@ module.exports = function($) { } foundChild = []; if (isChild && (ref = node != null ? node.tag : void 0, indexOf.call(childTagNames, ref) >= 0)) { - console.log("found child " + node.tag); foundChild.push(node); } if ((node != null ? node.children : void 0) != null) { - console.log("looking for child of " + node.tag); ref1 = node.children; for (j = 0, len = ref1.length; j < len; j++) { child = ref1[j]; diff --git a/lib/mixins/helpers.coffee b/lib/mixins/helpers.coffee index 09bcd7b..1049a20 100644 --- a/lib/mixins/helpers.coffee +++ b/lib/mixins/helpers.coffee @@ -72,11 +72,9 @@ module.exports = ($) -> foundChild = [] if isChild and node?.tag in childTagNames - console.log "found child " + node.tag foundChild.push node if node?.children? - console.log "looking for child of " + node.tag for child in node.children childResult = $.getChildren(child, childTagNames,true) Array.prototype.push.apply(foundChild,childResult) if childResult?.length > 0