* Set the value for the hashStatus on startUp.
()
| 66 | * Set the value for the hashStatus on startUp. |
| 67 | */ |
| 68 | function setHashStatus() |
| 69 | { |
| 70 | let element = document.getElementById('hashStatus'); |
| 71 | |
| 72 | if(hashStatus) |
| 73 | { |
| 74 | element.textContent = translate(hashStatus); |
| 75 | } |
| 76 | else { |
| 77 | element.textContent = translate('hash_status_code_5'); |
| 78 | } |
| 79 | |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Change the value of a switch button. |