aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-03-28 04:44:17 +0800
committerGitHub <noreply@github.com>2017-03-28 04:44:17 +0800
commita298130357996be48a61544154268025c4724cf4 (patch)
treee1e2eeb9aac0da46d83418e6f2494f2933188833 /ui/app/components
parentd6d85d28bbba9700ab9538403130873867dd7cfe (diff)
parentd41c8ef5986e1f39350f4ea1f7664415ea236c7d (diff)
downloadtangerine-wallet-browser-a298130357996be48a61544154268025c4724cf4.tar.gz
tangerine-wallet-browser-a298130357996be48a61544154268025c4724cf4.tar.zst
tangerine-wallet-browser-a298130357996be48a61544154268025c4724cf4.zip
Merge pull request #1269 from MetaMask/notice-fix
Notice fix for when notices are short
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/notice.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js
index 8a953a6b5..b85787033 100644
--- a/ui/app/components/notice.js
+++ b/ui/app/components/notice.js
@@ -92,6 +92,7 @@ Notice.prototype.render = function () {
},
}, [
h(ReactMarkdown, {
+ className: 'notice-box',
source: body,
skipHtml: true,
}),
@@ -114,6 +115,8 @@ Notice.prototype.render = function () {
Notice.prototype.componentDidMount = function () {
var node = findDOMNode(this)
linker.setupListener(node)
+ if (document.getElementsByClassName('notice-box')[0].clientHeight < 310) { this.setState({disclaimerDisabled: false}) }
+
}
Notice.prototype.componentWillUnmount = function () {