(cm)
| 3790 | |
| 3791 | // Finish an operation, updating the display and signalling delayed events |
| 3792 | function endOperation(cm) { |
| 3793 | var op = cm.curOp; |
| 3794 | if (op) { finishOperation(op, function (group) { |
| 3795 | for (var i = 0; i < group.ops.length; i++) |
| 3796 | { group.ops[i].cm.curOp = null; } |
| 3797 | endOperations(group); |
| 3798 | }); } |
| 3799 | } |
| 3800 | |
| 3801 | // The DOM updates done when an operation finishes are batched so |
| 3802 | // that the minimum number of relayouts are required. |
no test coverage detected