MCPcopy Index your code
hub / github.com/Threadfin/Threadfin / checkUndo

Function checkUndo

html/js/base_ts.js:576–590  ·  view source on GitHub ↗
(key)

Source from the content-addressed store, hash-verified

574 return;
575}
576function checkUndo(key) {
577 switch (key) {
578 case "epgMapping":
579 if (UNDO.hasOwnProperty(key)) {
580 SERVER["xepg"][key] = JSON.parse(JSON.stringify(UNDO[key]));
581 }
582 else {
583 UNDO[key] = JSON.parse(JSON.stringify(SERVER["xepg"][key]));
584 }
585 break;
586 default:
587 break;
588 }
589 return;
590}
591function sortSelect(elem) {
592 var tmpAry = [];
593 var selectedValue = elem[elem.selectedIndex].value;

Callers 2

createTableContentMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected