From 5cf69086380a382e395738168a0c18a29492e69b Mon Sep 17 00:00:00 2001 From: crosshj Date: Mon, 29 Aug 2022 12:20:45 -0400 Subject: [PATCH] service param WIP --- src/splitting.js | 1 - src/state.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/splitting.js b/src/splitting.js index 0b2ffdb..f3905de 100644 --- a/src/splitting.js +++ b/src/splitting.js @@ -139,7 +139,6 @@ const addPane = (node, target, append, vertical, row, layout) => { }; export const newPane = (direction, node, target, layout) => { - debugger; const row = node.parentNode.classList.contains('row'); const column = node.parentNode.classList.contains('column'); const horizontal = ["left", "right"].includes(direction); diff --git a/src/state.js b/src/state.js index be7f0b0..d3af3c4 100644 --- a/src/state.js +++ b/src/state.js @@ -243,7 +243,6 @@ export const onDrop = (layout) => (args) => { } if(!splitPane && !addedPane) return; - debugger; layout.onChange(); };