(cm)
| 4373 | } |
| 4374 | |
| 4375 | function estimateLineHeights(cm) { |
| 4376 | var doc = cm.doc, |
| 4377 | est = estimateHeight(cm) |
| 4378 | doc.iter(function (line) { |
| 4379 | var estHeight = est(line) |
| 4380 | if (estHeight != line.height) { |
| 4381 | updateLineHeight(line, estHeight) |
| 4382 | } |
| 4383 | }) |
| 4384 | } |
| 4385 | |
| 4386 | // Given a mouse event, find the corresponding position. If liberal |
| 4387 | // is false, it checks whether a gutter or scrollbar was clicked, |
no test coverage detected