1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 06:53:25 +02:00

remove debuggers

This commit is contained in:
Ian Storm Taylor
2016-09-22 15:42:29 -07:00
parent a1647b51be
commit c81c1f9d95

View File

@@ -97,9 +97,7 @@ export function undo(transform) {
// Replay the inverse of the previous operations. // Replay the inverse of the previous operations.
previous.slice().reverse().forEach(op => { previous.slice().reverse().forEach(op => {
op.inverse.forEach(inv => { op.inverse.forEach(inv => {
debugger
transform.applyOperation(inv) transform.applyOperation(inv)
debugger
}) })
}) })