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(); };