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

Function saveGroupTitle

html/js/mapping-editor.js:970–988  ·  view source on GitHub ↗
(xepg)

Source from the content-addressed store, hash-verified

968}
969
970function saveGroupTitle(xepg) {
971 var key = "x-group-title";
972 var value = document.getElementById("x-group-title").lastChild.value;
973
974 if (bulk == false) {
975 var thisChannel = xEPG["epgMapping"][xepg];
976 document.getElementById(xepg).childNodes[5].lastChild.innerHTML = value;
977 thisChannel[key] = value;
978 mappingDetail(xepg);
979 searchInMapping();
980 }
981
982 if (bulk == true) {
983 saveBulk(key, value);
984 mappingDetail(xepg);
985 return
986 }
987
988}
989
990function saveCategory(xepg) {
991 var key = "x-category";

Callers

nothing calls this directly

Calls 3

mappingDetailFunction · 0.85
saveBulkFunction · 0.85
searchInMappingFunction · 0.70

Tested by

no test coverage detected