From 209356b8ade1920b50d1d3a1a5e121c6623d167b Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 11 Nov 2022 23:47:49 +0100 Subject: Update --- app/bits/static/visibility.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 app/bits/static/visibility.js (limited to 'app/bits/static/visibility.js') diff --git a/app/bits/static/visibility.js b/app/bits/static/visibility.js new file mode 100755 index 0000000..f418195 --- /dev/null +++ b/app/bits/static/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 -- cgit