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

Commit 14af74c

Browse files
authored
Merge pull request #2089 from SteveMieskoski/mercury
Improve notification display when using fallback
2 parents 280cb97 + 342a524 commit 14af74c

29 files changed

+222971
-181231
lines changed

app/scripts/controllers/decryptWalletCtrl.js

Lines changed: 584 additions & 570 deletions
Large diffs are not rendered by default.

app/scripts/directives/QRCodeDrtv.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ var QRCodeDrtv = function() {
1616
colorLight: "#ffffff",
1717
correctLevel: QRCode.CorrectLevel.M
1818
});
19+
element[0].title = ''
1920
}, delay);
2021
});
2122
};
2223
};
23-
module.exports = QRCodeDrtv;
24+
module.exports = QRCodeDrtv;

chrome-extension/contest.html

Lines changed: 1154 additions & 1289 deletions
Large diffs are not rendered by default.

chrome-extension/css/etherwallet-master.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chrome-extension/cx-wallet.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ <h2 class="modal-title text-info" translate="NODE_Title"> Set Up Your Custom Nod
255255

256256
<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>
257257

258-
<div ng-show="browserProtocol=='https:'" class="alert alert-danger small" translate="NODE_Warning">
258+
<div ng-show="browserProtocol!='https:'" class="alert alert-danger small" translate="NODE_Warning">
259259
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>.
260260
</div>
261261

@@ -7373,7 +7373,7 @@ <h4 translate="tx_Details" class="cont-md">
73737373
TX Hash
73747374
</td>
73757375
<td>
7376-
<a href="https://etherscan.io/tx/{{ txInfo.hash }}" target="_blank" rel="noopener noreferrer">
7376+
<a href="{{ txInfo.txExplorerUrl }}" target="_blank" rel="noopener noreferrer">
73777377
{{ txInfo.hash }}
73787378
</a>
73797379
</td>
@@ -7383,7 +7383,7 @@ <h4 translate="tx_Details" class="cont-md">
73837383
From Address
73847384
</td>
73857385
<td>
7386-
<a href="https://etherscan.io/address/{{ txInfo.from }}" target="_blank" rel="noopener noreferrer">
7386+
<a href="{{ txInfo.fromExplorerUrl }}" target="_blank" rel="noopener noreferrer">
73877387
{{ txInfo.from }}
73887388
</a>
73897389
</td>
@@ -7393,7 +7393,7 @@ <h4 translate="tx_Details" class="cont-md">
73937393
To Address
73947394
</td>
73957395
<td>
7396-
<a href="https://etherscan.io/address/{{ txInfo.to }}" target="_blank" rel="noopener noreferrer">
7396+
<a href="{{ txInfo.toExplorerUrl }}" target="_blank" rel="noopener noreferrer">
73977397
{{ txInfo.to }}
73987398
</a>
73997399
</td>

0 commit comments

Comments
 (0)