From 2d63e2901d9c72c7e060396c867ddbb9e59a8be0 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 26 Oct 2017 17:20:04 -0400 Subject: [PATCH] defaults --- crypto.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/crypto.html b/crypto.html index a75abc7d..d111d332 100644 --- a/crypto.html +++ b/crypto.html @@ -73,7 +73,7 @@
{{privateKey.b64}}

@@ -87,8 +87,6 @@ -
-

The "Cipher String"

{{cipher.string}}
@@ -470,6 +468,11 @@ // Generate initial set of keys vm.generateKeys(); + + // Set default values + vm.email = 'user@example.com'; + vm.masterPassword = 'password123'; + vm.plaintext = 'This is a secret.'; })();