()
| 1232 | } |
| 1233 | |
| 1234 | function saveXEPG() { |
| 1235 | if (mappingError == true) { |
| 1236 | alert("Data could not be saved, errors in the XEPG data."); |
| 1237 | return; |
| 1238 | } |
| 1239 | showLoadingScreen(true); |
| 1240 | |
| 1241 | var data = new Object(); |
| 1242 | data["epgMapping"] = xEPG["epgMapping"]; |
| 1243 | data["cmd"] = "saveEpgMapping"; |
| 1244 | //console.log(data); |
| 1245 | Threadfin(data); |
| 1246 | } |
| 1247 | |
| 1248 | function bulkEdit() { |
| 1249 | bulk = !bulk; |
nothing calls this directly
no test coverage detected