Navigation Menu

Skip to content

Commit

Permalink
some consoe logs
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman committed Nov 8, 2016
1 parent d5015bf commit b8dcc9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions week10-chrome-ext/06_with_p5/sketch.js
Expand Up @@ -14,6 +14,7 @@ var sketch = function(p5) {

// The setup function
p5.setup = function() {
console.log('p5 running');
// Make a canvas that covers the HTML document up to 2000 pixels high
var h = p5.constrain(document.body.clientHeight, 0, 2000);
var c = p5.createCanvas(p5.windowWidth, h);
Expand Down
1 change: 1 addition & 0 deletions week10-chrome-ext/07_word_redacter/content.js
Expand Up @@ -9,6 +9,7 @@
// Grab the entire document body
// This gets an array even though it's likely just one thing
var everything = document.getElementsByTagName("body");
console.log('word redactor extension running');

for (var i = 0; i < everything.length; i++) {
// Look at the full content
Expand Down

0 comments on commit b8dcc9d

Please sign in to comment.