MCPcopy
hub / github.com/DHTMLX/gantt / endOperations

Function endOperations

samples/common/codehighlight/codemirror.js:3803–3815  ·  view source on GitHub ↗
(group)

Source from the content-addressed store, hash-verified

3801 // The DOM updates done when an operation finishes are batched so
3802 // that the minimum number of relayouts are required.
3803 function endOperations(group) {
3804 var ops = group.ops;
3805 for (var i = 0; i < ops.length; i++) // Read DOM
3806 { endOperation_R1(ops[i]); }
3807 for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe)
3808 { endOperation_W1(ops[i$1]); }
3809 for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM
3810 { endOperation_R2(ops[i$2]); }
3811 for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe)
3812 { endOperation_W2(ops[i$3]); }
3813 for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM
3814 { endOperation_finish(ops[i$4]); }
3815 }
3816
3817 function endOperation_R1(op) {
3818 var cm = op.cm, display = cm.display;

Callers 1

endOperationFunction · 0.85

Calls 5

endOperation_R1Function · 0.85
endOperation_W1Function · 0.85
endOperation_R2Function · 0.85
endOperation_W2Function · 0.85
endOperation_finishFunction · 0.85

Tested by

no test coverage detected