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
On paste from buffer I'm getting next error
"Uncaught TypeError: Cannot read property 'index' of null", source: file:///android_asset/quill/quill.min.js (7)
Because, on paste quill.getSelection() is null on Android
getFormat(index = this.getSelection(), length = 0) {
if (typeof index === 'number') {
return this.editor.getFormat(index, length);
} else {
return this.editor.getFormat(index.index, index.length); **<-- bug here "index" is null**
}
}
The text was updated successfully, but these errors were encountered:
on Android Chromium I have next code
On paste from buffer I'm getting next error
"Uncaught TypeError: Cannot read property 'index' of null", source: file:///android_asset/quill/quill.min.js (7)
Because, on paste quill.getSelection() is null on Android
The text was updated successfully, but these errors were encountered: