MCPcopy Index your code
hub / github.com/SortableJS/Sortable / _saveInputCheckedState

Function _saveInputCheckedState

modular/sortable.esm.js:2327–2335  ·  view source on GitHub ↗
(root)

Source from the content-addressed store, hash-verified

2325 return sum.toString(36);
2326}
2327function _saveInputCheckedState(root) {
2328 savedInputChecked.length = 0;
2329 var inputs = root.getElementsByTagName('input');
2330 var idx = inputs.length;
2331 while (idx--) {
2332 var el = inputs[idx];
2333 el.checked && savedInputChecked.push(el);
2334 }
2335}
2336function _nextTick(fn) {
2337 return setTimeout(fn, 0);
2338}

Callers 1

sortable.esm.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…