aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tooltip.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-07-07 11:21:09 +0800
committerkumavis <aaron@kumavis.me>2016-07-07 11:21:09 +0800
commit2f33c0a019ed8b6e667c869c219c4b5f9c496c28 (patch)
tree549355f7c90eafb47b4aeee7f77383bf3a07fcdb /ui/app/components/tooltip.js
parent7aa120e630fcc7910114ba825c015a602a3b9403 (diff)
parentfb363b8a62f350fc447a82f30908a4ec1b8625d9 (diff)
downloadtangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar.gz
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar.bz2
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar.lz
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar.xz
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.tar.zst
tangerine-wallet-browser-2f33c0a019ed8b6e667c869c219c4b5f9c496c28.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin into fastinject
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)