diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-04-06 02:06:57 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-04-06 02:06:57 +0200 |
commit | d5fc7ee42de074be1c773dcdc5dd803f89d44489 (patch) | |
tree | c0167961ca2f9ca020a8bd122a1e6f85322dfcb0 /popup | |
parent | 3877ace7ddd2df9a19b8ed0288ca0ed6f7411e0c (diff) |
Leave sending the payment blob to the merchant.
Diffstat (limited to 'popup')
-rw-r--r-- | popup/popup.html | 2 | ||||
-rw-r--r-- | popup/popup.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/popup/popup.html b/popup/popup.html index 518d3c6cb..551d49f9b 100644 --- a/popup/popup.html +++ b/popup/popup.html @@ -11,8 +11,8 @@ <script src="../lib/vendor/lodash.core.min.js"></script> <script src="../lib/vendor/system-csp-production.src.js"></script> <script src="../lib/vendor/jed.js"></script> + <script src="../lib/i18n.js"></script> <script src="../i18n/strings.js"></script> - <script src="../lib/i18n.js"></script> <script src="../lib/module-trampoline.js"></script> </head> diff --git a/popup/popup.tsx b/popup/popup.tsx index d99e4e81b..c5ecf85d0 100644 --- a/popup/popup.tsx +++ b/popup/popup.tsx @@ -136,7 +136,7 @@ namespace WalletBalance { {config: openInExtension}, i18n`help`); - return i18n.parts`You have no balance to show. Need some ${helpLink}? getting started?`; + return i18n.parts`You have no balance to show. Need some ${helpLink} getting started?`; } } |