Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jun 1, 2015
1 parent f5b6044 commit d56b05c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions browser/gom.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 0 additions & 2 deletions lib/mixins/helpers.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d56b05c

Please sign in to comment.