-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The scrollIntoView() method uses non-existent "selection.type" property #4041
Comments
Hello @zentby, how did you find this issue, observed somewhere "in the wild"? This would mean that |
Hi @f1ames , I ran into this issue with my customized plugin that integrates with "autocomplete". The error is thrown within the execution of the next line, |
Try this one If you set a breakpoint at LN:10574 as shown below, you'll be able to see that the Reproduce step:
|
Thanks for the demo @zentby. There is something strange going on - from what I have checked our We will have to take a closer look into this one. |
Closed in #4127 |
ckeditor4/core/selection.js
Line 2495 in 8a12b04
this.type
in the code above is always "undefined" as thetype
is not being maintained anywhere else. The correct reference call should bethis.getType()
.The text was updated successfully, but these errors were encountered: