(cm, line, diff)
| 5764 | eventMixin(LineWidget); |
| 5765 | |
| 5766 | function adjustScrollWhenAboveVisible(cm, line, diff) { |
| 5767 | if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop)) |
| 5768 | { addToScrollTop(cm, diff); } |
| 5769 | } |
| 5770 | |
| 5771 | function addLineWidget(doc, handle, node, options) { |
| 5772 | var widget = new LineWidget(doc, node, options); |
no test coverage detected