aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/notice.js
diff options
context:
space:
mode:
authortmashuang <tmashuang@gmail.com>2017-10-24 23:36:02 +0800
committertmashuang <tmashuang@gmail.com>2017-10-24 23:36:02 +0800
commit91b23246cd18345e6fb6cba5262ccd2af8876f44 (patch)
tree7e8b76e0ac32022ad4d3e34b942b39372fc45444 /ui/app/components/notice.js
parent61eea51310508714d753965e3055f533434001e7 (diff)
parentf503120b82c108efae0a4fc1282a43721d961ca2 (diff)
downloadtangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar.gz
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar.bz2
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar.lz
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar.xz
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.tar.zst
tangerine-wallet-browser-91b23246cd18345e6fb6cba5262ccd2af8876f44.zip
Merge branch 'firsttimeflow' of https://github.com/chikeichan/metamask-plugin into firsttimeflow
Diffstat (limited to 'ui/app/components/notice.js')
-rw-r--r--ui/app/components/notice.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js
index c26505193..09d461c7b 100644
--- a/ui/app/components/notice.js
+++ b/ui/app/components/notice.js
@@ -117,6 +117,7 @@ Notice.prototype.render = function () {
}
Notice.prototype.componentDidMount = function () {
+ // eslint-disable-next-line react/no-find-dom-node
var node = findDOMNode(this)
linker.setupListener(node)
if (document.getElementsByClassName('notice-box')[0].clientHeight < 310) {
@@ -125,6 +126,7 @@ Notice.prototype.componentDidMount = function () {
}
Notice.prototype.componentWillUnmount = function () {
+ // eslint-disable-next-line react/no-find-dom-node
var node = findDOMNode(this)
linker.teardownListener(node)
}