(cm)
| 2115 | |
| 2116 | // Clear the view. |
| 2117 | function resetView(cm) { |
| 2118 | cm.display.viewFrom = cm.display.viewTo = cm.doc.first; |
| 2119 | cm.display.view = []; |
| 2120 | cm.display.viewOffset = 0; |
| 2121 | } |
| 2122 | |
| 2123 | // Find the view element corresponding to a given line. Return null |
| 2124 | // when the line isn't visible. |
no outgoing calls
no test coverage detected
searching dependent graphs…