diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-06-26 20:50:16 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-06-26 20:50:16 -0500 |
commit | 4f4b864b4549a84a478e49ee9831f6324098c7fc (patch) | |
tree | 945fb405d1db79f03965e27bb7de47350f3e81ed /static | |
parent | ee72eb8b68f0b09fffaf54e9a6a8a0a47f2d14ea (diff) | |
download | org-live-4f4b864b4549a84a478e49ee9831f6324098c7fc.tar.gz org-live-4f4b864b4549a84a478e49ee9831f6324098c7fc.tar.bz2 org-live-4f4b864b4549a84a478e49ee9831f6324098c7fc.zip |
remove showHTML function
Diffstat (limited to 'static')
-rw-r--r-- | static/app.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/static/app.js b/static/app.js index 36f6c89..bfa426e 100644 --- a/static/app.js +++ b/static/app.js @@ -56,11 +56,3 @@ function saveHTML() { window.URL.revokeObjectURL(url); }, 0); } - -function showHTML() { - var data = parseOrg(); - data += "<form method='dialog'><button>Close dialog</button></form>"; - var element = document.getElementById("modal"); - element.innerHTML = data.toString(); - element.showModal(); -} |