mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-04-05 22:12:49 +02:00
Fix mismatched event parameter. (#694)
This commit is contained in:
parent
f80951ab82
commit
8a81d73ec1
@ -105,7 +105,7 @@ function Plugin(options = {}) {
|
||||
// is replaced. But the `select` event for this change doesn't fire until after
|
||||
// the `beforeInput` event, even though the native selection is updated. So we
|
||||
// need to manually adjust the selection to be in sync. (03/18/2017)
|
||||
const window = getWindow(event.target)
|
||||
const window = getWindow(e.target)
|
||||
const native = window.getSelection()
|
||||
const { anchorNode, anchorOffset, focusNode, focusOffset } = native
|
||||
const anchorPoint = getPoint(anchorNode, anchorOffset, state, editor)
|
||||
|
Loading…
x
Reference in New Issue
Block a user