Skip to content

Commit

Permalink
Update custom.js
Browse files Browse the repository at this point in the history
  • Loading branch information
landaisbenj authored Oct 30, 2018
1 parent 66b682c commit 004ef04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ $( document ).ready(function() {
if (item.type === 'childList'){

if (item.addedNodes.length > 0){
console.log('new div is being added! ' + item );
console.log('new div is being added! ' + item.name );
}

if (item.removedNodes.length > 0){
console.log('div has been removed ' + item );
console.log('div has been removed ' + item.name );
}

}
Expand Down

0 comments on commit 004ef04

Please sign in to comment.