diff options
Diffstat (limited to 'javascript/demo.html')
-rw-r--r-- | javascript/demo.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/javascript/demo.html b/javascript/demo.html index c9cad8b..2120f95 100644 --- a/javascript/demo.html +++ b/javascript/demo.html @@ -28,6 +28,9 @@ document.addEventListener("DOMContentLoaded", function (event) { tasks.push(["alice", "Creating account", function() { alice.create() }]); tasks.push(["bob", "Creating account", function() { bob.create() }]); + tasks.push(["bob", "Generate one time keys", function() { + bob.generate_one_time_keys(1); + }]); tasks.push(["alice", "Create outbound session", function() { var bobs_id_keys = JSON.parse(bob.identity_keys("bob", "bob_device", 0, 0)); var bobs_id_key; |