(cm)
| 575 | } |
| 576 | |
| 577 | function updateViewOffset(cm) { |
| 578 | var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom)); |
| 579 | // Position the mover div to align with the current virtual scroll position |
| 580 | cm.display.mover.style.top = off + "px"; |
| 581 | } |
| 582 | |
| 583 | function computeIntact(intact, changes) { |
| 584 | for (var i = 0, l = changes.length || 0; i < l; ++i) { |
no test coverage detected