aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/ui.html
diff options
context:
space:
mode:
authorMaximilian Krambach <[email protected]>2018-04-18 14:38:06 +0000
committerMaximilian Krambach <[email protected]>2018-04-20 13:24:13 +0000
commit6ab25e40d904007755c5d999bf66ae264236e745 (patch)
treec9f6bff260f9cc0d7c0466f6caf316ade679c33e /lang/js/ui.html
parentMerge branch 'master' into javascript-binding (diff)
downloadgpgme-6ab25e40d904007755c5d999bf66ae264236e745.tar.gz
gpgme-6ab25e40d904007755c5d999bf66ae264236e745.zip
js: encrypt improvement and decrypt method
* Compatibility class gpgme_openpgpjs offers an API that should accept openpgpjs syntax, throwing errors if a parameter is unexpected/not implemented * tried to be more generic in methods * waiting for multiple answers if 'more' is in the answer * more consistency checking on sending and receiving * updated the example extension --
Diffstat (limited to 'lang/js/ui.html')
-rw-r--r--lang/js/ui.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/js/ui.html b/lang/js/ui.html
deleted file mode 100644
index 9c56c2e5..00000000
--- a/lang/js/ui.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="ui.css"/>
- </head>
- <body>
- <!--TODO: replace this mess with require -->
- <script src="dist/gpgmejs.bundle.js"></script>
- <script src="testapplication.js"></script>
- <ul>
- <li>
- <span class="label">Text: </span>
- <input type="text" id='text0' />
- </li>
- <li>
- <span class="label">Public key ID: </span>
- <input type="text" id="key" value="Your Public Key ID here" />
- </li>
- </ul>
- <button id="button0">Encrypt</button><br>
- <div id="answer"></div>
- </body>
-</html>