Skip to content

Commit

Permalink
Removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter van der Zee committed Jun 3, 2012
1 parent 36239f6 commit b77eb70
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Tokenizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,11 +487,9 @@ Tokenizer.prototype = {
arrtxtjs.push(val.slice(last, i));

if (arrtxtjs.length > 1) { // if we did find any dynamic js block...
console.log(["has",arrtxtjs.length,"items",arrtxtjs])
for (var i=1; i<arrtxtjs.length; i+=2) {
arrtxtjs[i] = arrtxtjs[i].replace(this.regexRemoveEscape, '$1'); // remove a single backslash from the content (it was used as an escape character)
}
console.log([arrtxtjs])
return arrtxtjs; // return array with [string,js,string,js,...]
} else { // no dynamic js found, return a string
val = arrtxtjs[0].replace(this.regexRemoveEscape, '$1'); // remove a single backslash from the content (it was used as an escape character)
Expand Down

0 comments on commit b77eb70

Please sign in to comment.