summaryrefslogtreecommitdiff
path: root/wallet-installation.html
diff options
context:
space:
mode:
Diffstat (limited to 'wallet-installation.html')
-rw-r--r--wallet-installation.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/wallet-installation.html b/wallet-installation.html
index 7920fd36..9a20159e 100644
--- a/wallet-installation.html
+++ b/wallet-installation.html
@@ -34,11 +34,12 @@
function onSuccess() {
console.log("installation successful");
- location.reload();
+ document.getElementById("install-result").innerText = "(installation was successful)";
}
function onFailure(detail) {
console.error("installation failed:", detail);
+ document.getElementById("install-result").innerText = "(failed: " + detail + ")";
}
function installWallet() {
@@ -84,7 +85,7 @@
<li id="inline-install-chrome">from this page:
<button onclick="installWallet()" id="install-button">
install now
- </button>
+ </button><div id="install-result"></div>
</li>
</ul>
Wallets for other browsers will be provided in the near future.