(xepg)
| 893 | } |
| 894 | |
| 895 | function saveChannelNameUpdate(xepg) { |
| 896 | var key = "x-update-channel-name"; |
| 897 | var value = JSON.parse(document.getElementById("x-update-channel-name").lastChild.checked); |
| 898 | |
| 899 | if (bulk == false) { |
| 900 | var thisChannel = xEPG["epgMapping"][xepg]; |
| 901 | thisChannel[key] = value |
| 902 | mappingDetail(xepg); |
| 903 | searchInMapping(); |
| 904 | return |
| 905 | } |
| 906 | |
| 907 | if (bulk == true) { |
| 908 | saveBulk(key, value); |
| 909 | mappingDetail(xepg); |
| 910 | return |
| 911 | } |
| 912 | |
| 913 | } |
| 914 | |
| 915 | function saveChannelStatus(xepg) { |
| 916 | var thisChannel = xEPG["epgMapping"][xepg]; |
nothing calls this directly
no test coverage detected