diff options
Diffstat (limited to 'app/bits/assets/visibility.js')
-rwxr-xr-x | app/bits/assets/visibility.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/bits/assets/visibility.js b/app/bits/assets/visibility.js new file mode 100755 index 0000000..f418195 --- /dev/null +++ b/app/bits/assets/visibility.js @@ -0,0 +1,13 @@ +let sensitiveInfoVisible = true; + +async function toggleVisibility() { + if (sensitiveInfoVisible) { + sensitiveInfoVisible = false; + document.getElementById("visibility-icon").innerText = "visibility_off"; + await refresh(); + } else { + sensitiveInfoVisible = true; + document.getElementById("visibility-icon").innerText = "visibility"; + await refresh(); + } +}
\ No newline at end of file |