You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone tested quilljs on languages that require text selection? (i.e. Chinese, Japanese...)
Currently the editor seems to eat away the unfinished input making it virtually impossible to type in those langauges if styling is being applied.
Edit: Ok.. not happend all the time. But when new format is chosen, so a new span/b/p would be created on the next keyboard input, the action takes the not-yet-finished input and create the new element. This interrupts the input process and basically forbid people to finish what they are typing. For example, suppose it takes 3 phonetic alphabets to finish 1 chinese letter, the input will put the phonetic alphabets into the field before you finish the process. Quills takes the first phonetic alphabet input and create new element to use the new styling, which breaks the input process.
The text was updated successfully, but these errors were encountered:
I have the same problem. It works fine in v0.18.1, and the bug shown in v0.19.0
It caused by the Selection.prototype._setNativeRange.
Line nativeRange = this._getNativeRange();(see code, in this commit) was removed in v0.19.0, when I add this line, it works fine.
Has anyone tested quilljs on languages that require text selection? (i.e. Chinese, Japanese...)
Currently the editor seems to eat away the unfinished input making it virtually impossible to type in those langauges if styling is being applied.
Edit: Ok.. not happend all the time. But when new format is chosen, so a new span/b/p would be created on the next keyboard input, the action takes the not-yet-finished input and create the new element. This interrupts the input process and basically forbid people to finish what they are typing. For example, suppose it takes 3 phonetic alphabets to finish 1 chinese letter, the input will put the phonetic alphabets into the field before you finish the process. Quills takes the first phonetic alphabet input and create new element to use the new styling, which breaks the input process.
The text was updated successfully, but these errors were encountered: