(cm)
| 3209 | |
| 3210 | // Clear the view. |
| 3211 | function resetView(cm) { |
| 3212 | cm.display.viewFrom = cm.display.viewTo = cm.doc.first; |
| 3213 | cm.display.view = []; |
| 3214 | cm.display.viewOffset = 0; |
| 3215 | } |
| 3216 | |
| 3217 | // Find the view element corresponding to a given line. Return null |
| 3218 | // when the line isn't visible. |
no outgoing calls
no test coverage detected