Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2089 from SteveMieskoski/mercury
Browse files Browse the repository at this point in the history
Improve notification display when using fallback
  • Loading branch information
gamalielhere authored Oct 16, 2018
2 parents 280cb97 + 342a524 commit 14af74c
Show file tree
Hide file tree
Showing 29 changed files with 222,971 additions and 181,231 deletions.
1,154 changes: 584 additions & 570 deletions app/scripts/controllers/decryptWalletCtrl.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion app/scripts/directives/QRCodeDrtv.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ var QRCodeDrtv = function() {
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.M
});
element[0].title = ''
}, delay);
});
};
};
module.exports = QRCodeDrtv;
module.exports = QRCodeDrtv;
2,443 changes: 1,154 additions & 1,289 deletions chrome-extension/contest.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion chrome-extension/css/etherwallet-master.min.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions chrome-extension/cx-wallet.html
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ <h2 class="modal-title text-info" translate="NODE_Title"> Set Up Your Custom Nod

<p class="small"><a href="https://myetherwallet.github.io/knowledge-base/networks/run-your-own-node-with-myetherwallet.html" target="_blank" rel="noopener noreferrer"> Instructions can be found here </a></p>

<div ng-show="browserProtocol=='https:'" class="alert alert-danger small" translate="NODE_Warning">
<div ng-show="browserProtocol!='https:'" class="alert alert-danger small" translate="NODE_Warning">
Your node must be HTTPS in order to connect to it via MyEtherWallet.com. You can [download the MyEtherWallet repo & run it locally](https://github.com/kvhnuke/etherwallet/releases/latest) to connect to your local node. Or, get free SSL certificate via [LetsEncrypt](https://letsencrypt.org/)</a>.
</div>

Expand Down Expand Up @@ -7373,7 +7373,7 @@ <h4 translate="tx_Details" class="cont-md">
TX Hash
</td>
<td>
<a href="https://etherscan.io/tx/{{ txInfo.hash }}" target="_blank" rel="noopener noreferrer">
<a href="{{ txInfo.txExplorerUrl }}" target="_blank" rel="noopener noreferrer">
{{ txInfo.hash }}
</a>
</td>
Expand All @@ -7383,7 +7383,7 @@ <h4 translate="tx_Details" class="cont-md">
From Address
</td>
<td>
<a href="https://etherscan.io/address/{{ txInfo.from }}" target="_blank" rel="noopener noreferrer">
<a href="{{ txInfo.fromExplorerUrl }}" target="_blank" rel="noopener noreferrer">
{{ txInfo.from }}
</a>
</td>
Expand All @@ -7393,7 +7393,7 @@ <h4 translate="tx_Details" class="cont-md">
To Address
</td>
<td>
<a href="https://etherscan.io/address/{{ txInfo.to }}" target="_blank" rel="noopener noreferrer">
<a href="{{ txInfo.toExplorerUrl }}" target="_blank" rel="noopener noreferrer">
{{ txInfo.to }}
</a>
</td>
Expand Down
Loading

0 comments on commit 14af74c

Please sign in to comment.