MCPcopy
hub / github.com/SortableJS/Sortable / _saveInputCheckedState

Function _saveInputCheckedState

Sortable.js:2333–2341  ·  view source on GitHub ↗
(root)

Source from the content-addressed store, hash-verified

2331 return sum.toString(36);
2332 }
2333 function _saveInputCheckedState(root) {
2334 savedInputChecked.length = 0;
2335 var inputs = root.getElementsByTagName('input');
2336 var idx = inputs.length;
2337 while (idx--) {
2338 var el = inputs[idx];
2339 el.checked && savedInputChecked.push(el);
2340 }
2341 }
2342 function _nextTick(fn) {
2343 return setTimeout(fn, 0);
2344 }

Callers 1

Sortable.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…