Skip to content

Commit

Permalink
Remove JS debugging console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Jan 5, 2023
1 parent 1ef4afe commit 27f8cea
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/js/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ clipboard.on( 'success', function(e) {
var response = document.querySelector( '.mc-notice-copied' );
var text = response.textContent;
wp.a11y.speak( text );
console.log( e );
response.classList.add( 'visible' );
});

Expand Down
1 change: 0 additions & 1 deletion src/js/ajax-cats.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
$( '#event_category_name' ).val( '' );
$( '<li class="new"><input type="checkbox" name="event_category[]" id="mc_cat_' + category_id + '" value="' + category_id + '" checked> <label for="mc_cat_' + category_id + '">' + category_name + '</label></li>' ).insertBefore( '.categories .event-new-category' );
}
console.log( response );
}, "json" );
}
});
Expand Down

0 comments on commit 27f8cea

Please sign in to comment.