We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbe3fd commit 9dd6275Copy full SHA for 9dd6275
lib/codemirror.js
@@ -885,7 +885,7 @@ window.CodeMirror = (function() {
885
// doesn't work when wrapping is on, but in that case the
886
// situation is slightly better, since IE does cache line-wrapping
887
// information and only recomputes per-line.
888
- if (ie && !cm.options.lineWrapping && pre.childNodes.length > 100) {
+ if (ie && !ie_lt8 && !cm.options.lineWrapping && pre.childNodes.length > 100) {
889
var fragment = document.createDocumentFragment();
890
var chunk = 10, n = pre.childNodes.length;
891
for (var i = 0, chunks = Math.ceil(n / chunk); i < chunks; ++i) {
0 commit comments