prosemirror-dropcursor
Advanced tools
Changelog
1.3.4 (2021-04-01)
Hide the drop cursor when dropPoint
doesn't return a position.
Changelog
1.3.3 (2021-02-04)
Fix drop cursor positioning when the editor's offsetParent
has been scrolled.
Changelog
1.3.2 (2019-11-20)
Rename ES module files to use a .js extension, since Webpack gets confused by .mjs
Changelog
1.3.1 (2019-11-19)
The file referred to in the package's module
field now is compiled down to ES5.
Changelog
1.2.0 (2019-10-08)
dropCursor
now takes a new option, class
, to set the CSS class name of the cursor element. Add class option to in-code docs
Changelog
1.1.2 (2019-09-05)
Fix crash on IE11 due to using a method that platform doesn't support. Don't show a drop cursor when the view isn't editable
The drop cursor will no longer show up when the view isn't editable.
Changelog
1.1.1 (2018-10-23)
Fix crash when destroying the plugin, due to a misspelled method name.
Changelog
1.1.0 (2018-10-22)
Fixes an issue where drop cursors changed line breaking, causing the content to jump around during dragging.
Between-blocks drop cursors are now shown as a horizontal line.
Changelog
1.0.1 (2018-06-20)
Dragging from a content node directly to the outside of the editor will now properly hide the drop cursor.
Make removal of drop cursor part of the drop transaction when possible.
Use dropPoint
from prosemirror-transform, rather than a local parallel implementation.