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
If I replace mutations.push.apply(mutations, remaining); at line 1322 in dist/quill.js by mutations.concat(remaining);, I have no more error but I can't find how to do this in Quill source files.
The text was updated successfully, but these errors were encountered:
When I paste huge HTML (about 450 lines) and apply "code-block" format I get an error in console. I use highligthjs for syntax highlighting.
Steps for Reproduction
Expected behavior:
I would be able to paste huge HTML.
Platforms:
Ubuntu 14.04
Chrome 54.0.2840.100 (64-bit)
Version:
Quill 1.1.5
Highlightjs 9.8.0
If I replace
mutations.push.apply(mutations, remaining);
at line 1322 in dist/quill.js bymutations.concat(remaining);
, I have no more error but I can't find how to do this in Quill source files.The text was updated successfully, but these errors were encountered: