(cm, measure)
| 4241 | } |
| 4242 | |
| 4243 | function setDocumentHeight(cm, measure) { |
| 4244 | cm.display.sizer.style.minHeight = measure.docHeight + "px"; |
| 4245 | cm.display.heightForcer.style.top = measure.docHeight + "px"; |
| 4246 | cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + "px"; |
| 4247 | } |
| 4248 | |
| 4249 | // Re-align line numbers and gutter marks to compensate for |
| 4250 | // horizontal scrolling. |
no test coverage detected