prosemirror-commands
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -387,2 +387,3 @@ 'use strict'; | ||
var before = $cut.nodeBefore, after = $cut.nodeAfter, conn, match; | ||
if (before.type.spec.isolating || after.type.spec.isolating) { return false } | ||
if (joinMaybeClear(state, $cut, dispatch)) { return true } | ||
@@ -389,0 +390,0 @@ |
{ | ||
"name": "prosemirror-commands", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Editing commands for ProseMirror", | ||
@@ -5,0 +5,0 @@ "main": "dist/commands.js", |
@@ -365,2 +365,3 @@ import {joinPoint, canJoin, findWrapping, liftTarget, canSplit, ReplaceAroundStep} from "prosemirror-transform" | ||
let before = $cut.nodeBefore, after = $cut.nodeAfter, conn, match | ||
if (before.type.spec.isolating || after.type.spec.isolating) return false | ||
if (joinMaybeClear(state, $cut, dispatch)) return true | ||
@@ -367,0 +368,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106384
1145