(cm)
| 523 | } |
| 524 | |
| 525 | function updateViewOffset(cm) { |
| 526 | var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom)); |
| 527 | // Position the mover div to align with the current virtual scroll position |
| 528 | cm.display.mover.style.top = off + "px"; |
| 529 | } |
| 530 | |
| 531 | function computeIntact(intact, changes) { |
| 532 | for (var i = 0, l = changes.length || 0; i < l; ++i) { |
no test coverage detected