diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2018-03-31 02:15:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31 02:15:12 +0800 |
commit | 8e0f39353dd47c4a201aaf2ee160912846f2e68b (patch) | |
tree | 0fac2629c48dcf4134d8205441766e3c6a41b4ed /ui/app/components/modals/deposit-ether-modal.js | |
parent | 9d4be1842e7c56e3bfde529ff555dcae8dec3dbd (diff) | |
parent | 89e6baa3ba07cc46dcc62886fbe3f1906649ae77 (diff) | |
download | tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar.gz tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar.bz2 tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar.lz tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar.xz tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.tar.zst tangerine-wallet-browser-8e0f39353dd47c4a201aaf2ee160912846f2e68b.zip |
Merge pull request #3781 from MetaMask/ci-artifacts
Build - Refactor + CircleCI Mascara builds
Diffstat (limited to 'ui/app/components/modals/deposit-ether-modal.js')
-rw-r--r-- | ui/app/components/modals/deposit-ether-modal.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/modals/deposit-ether-modal.js b/ui/app/components/modals/deposit-ether-modal.js index 8854d258f..0dc611f50 100644 --- a/ui/app/components/modals/deposit-ether-modal.js +++ b/ui/app/components/modals/deposit-ether-modal.js @@ -150,7 +150,7 @@ DepositEtherModal.prototype.render = function () { this.renderRow({ logo: h('img.deposit-ether-modal__logo', { - src: '../../../images/deposit-eth.svg', + src: './images/deposit-eth.svg', }), title: DIRECT_DEPOSIT_ROW_TITLE, text: DIRECT_DEPOSIT_ROW_TEXT, @@ -171,7 +171,7 @@ DepositEtherModal.prototype.render = function () { this.renderRow({ logo: h('div.deposit-ether-modal__logo', { style: { - backgroundImage: 'url(\'../../../images/coinbase logo.png\')', + backgroundImage: 'url(\'./images/coinbase logo.png\')', height: '40px', }, }), @@ -185,7 +185,7 @@ DepositEtherModal.prototype.render = function () { this.renderRow({ logo: h('div.deposit-ether-modal__logo', { style: { - backgroundImage: 'url(\'../../../images/shapeshift logo.png\')', + backgroundImage: 'url(\'./images/shapeshift logo.png\')', }, }), title: SHAPESHIFT_ROW_TITLE, |