aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tooltip.js
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-07-07 09:01:22 +0800
committerGitHub <noreply@github.com>2016-07-07 09:01:22 +0800
commit525abb85d4848e2593f7ffaf4e462e067a64632f (patch)
treec8169ebbe1e2dba3158df1b104f82688a9681d11 /ui/app/components/tooltip.js
parent9d54f10dc5bd42f9103ff6c9f2094d5af81b2342 (diff)
parent53eefc1efc65c138c8692bb069ae64e5eae9942b (diff)
downloadtangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar.gz
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar.bz2
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar.lz
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar.xz
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.tar.zst
tangerine-wallet-browser-525abb85d4848e2593f7ffaf4e462e067a64632f.zip
Merge pull request #399 from MetaMask/ethBalance
Eth balance
Diffstat (limited to 'ui/app/components/tooltip.js')
-rw-r--r--ui/app/components/tooltip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js
index 4eab8611e..fb67c717e 100644
--- a/ui/app/components/tooltip.js
+++ b/ui/app/components/tooltip.js
@@ -14,7 +14,7 @@ Tooltip.prototype.render = function () {
const props = this.props
return h(ReactTooltip, {
- position: 'left',
+ position: props.position ? props.position : 'left',
title: props.title,
fixed: false,
}, props.children)