prosemirror-utils
Advanced tools
Comparing version 0.7.0 to 0.7.1
@@ -709,3 +709,3 @@ 'use strict'; | ||
} | ||
return selection.isColSelection() && columnIndex >= rect.left && columnIndex <= rect.right; | ||
return selection.isColSelection() && columnIndex >= rect.left && columnIndex < rect.right; | ||
} | ||
@@ -730,3 +730,3 @@ | ||
} | ||
return selection.isRowSelection() && rowIndex >= rect.top && rowIndex <= rect.bottom; | ||
return selection.isRowSelection() && rowIndex >= rect.top && rowIndex < rect.bottom; | ||
} | ||
@@ -733,0 +733,0 @@ |
{ | ||
"name": "prosemirror-utils", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Utils library for ProseMirror", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
169675