diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2015-08-21 09:28:38 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2015-08-21 09:30:15 +1000 |
commit | 6d628db74f50dbf987a5e95c468fd02c22a1ec04 (patch) | |
tree | 145a08ab5f31c3be4717db89ecd73ce2676205b1 | |
parent | 2b831bc6b577f88485bb89cfcf7f94fb3f39c1d2 (diff) | |
download | BIP39-6d628db74f50dbf987a5e95c468fd02c22a1ec04.tar.gz BIP39-6d628db74f50dbf987a5e95c468fd02c22a1ec04.tar.zst BIP39-6d628db74f50dbf987a5e95c468fd02c22a1ec04.zip |
Typo privkeCell > privkeyCell
Closes #12
-rw-r--r-- | bip39-standalone.html | 2 | ||||
-rw-r--r-- | src/js/index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html index 9a40252..0045240 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html | |||
@@ -14918,7 +14918,7 @@ var Mnemonic = function(language) { | |||
14918 | addressCell.addClass("invisible"); | 14918 | addressCell.addClass("invisible"); |
14919 | } | 14919 | } |
14920 | if (!showPrivKey) { | 14920 | if (!showPrivKey) { |
14921 | privkeCell.addClass("invisible"); | 14921 | privkeyCell.addClass("invisible"); |
14922 | } | 14922 | } |
14923 | DOM.addresses.append(row); | 14923 | DOM.addresses.append(row); |
14924 | } | 14924 | } |
diff --git a/src/js/index.js b/src/js/index.js index 676684b..672906d 100644 --- a/src/js/index.js +++ b/src/js/index.js | |||
@@ -336,7 +336,7 @@ | |||
336 | addressCell.addClass("invisible"); | 336 | addressCell.addClass("invisible"); |
337 | } | 337 | } |
338 | if (!showPrivKey) { | 338 | if (!showPrivKey) { |
339 | privkeCell.addClass("invisible"); | 339 | privkeyCell.addClass("invisible"); |
340 | } | 340 | } |
341 | DOM.addresses.append(row); | 341 | DOM.addresses.append(row); |
342 | } | 342 | } |