Skip to content

Commit

Permalink
chore: commented out some debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV authored Oct 18, 2023
1 parent 3e45c92 commit ba31822
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/editorjs-columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class EditorJsColumns {
this.readOnly = readOnly;
this.config = config || {}

console.log(this.config)
// console.log(this.config)

console.log(this.config.EditorJsLibrary)
// console.log(this.config.EditorJsLibrary)

this._CSS = {
block: this.api.styles.block,
Expand Down Expand Up @@ -74,8 +74,8 @@ class EditorJsColumns {


onKeyUp(e) {
console.log(e)
console.log("heyup")
// console.log(e)
// console.log("heyup")
if (e.code !== "Backspace" && e.code !== "Delete") {
return;
}
Expand Down

0 comments on commit ba31822

Please sign in to comment.