Skip to content

Commit

Permalink
tell eslint to ignore console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
codeanticode committed Aug 8, 2024
1 parent ed56904 commit 51b58ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,17 @@ class JupyterScatterView {
this.viewChangeHandlerBound = this.viewChangeHandler.bind(this);
this.resizeHandlerBound = this.resizeHandler.bind(this);
this.scatterplot.subscribe('lassoEnd', ({ centerPositions }) => {
// eslint-disable-next-line
console.log("lassoEnd")
// eslint-disable-next-line
console.log({centerPositions})
this.model.set("center_positions", centerPositions);
this.model.save_changes();
})
this.scatterplot.subscribe('dirEnd', ({ dircenterPositions }) => {
// eslint-disable-next-line
console.log("dirEnd")
// eslint-disable-next-line
console.log({dircenterPositions})
this.model.set("dir_center_positions", dircenterPositions);
this.model.save_changes();
Expand Down

0 comments on commit 51b58ab

Please sign in to comment.