aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2018-06-19 03:31:39 +0800
committerGitHub <noreply@github.com>2018-06-19 03:31:39 +0800
commitd910c35e90d0d725e86b7743538b6c6c429f26f0 (patch)
tree5a0850825a2c99d59799d3e9422b3f0f0e85eb11
parentd5c34c548371ac13f194cb44a1a64c3d8f265a5b (diff)
parent356cc500956e40b48d78c9dcaf907d498eb707f7 (diff)
downloadtangerine-wallet-browser-d910c35e90d0d725e86b7743538b6c6c429f26f0.tar.gz
tangerine-wallet-browser-d910c35e90d0d725e86b7743538b6c6c429f26f0.tar.zst
tangerine-wallet-browser-d910c35e90d0d725e86b7743538b6c6c429f26f0.zip
Merge pull request #4602 from MetaMask/notice-controller-fixv4.8.0
notice controller - properly show new notices for non-new users
-rw-r--r--app/scripts/notice-controller.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/app/scripts/notice-controller.js b/app/scripts/notice-controller.js
index e202043cf..2def4371e 100644
--- a/app/scripts/notice-controller.js
+++ b/app/scripts/notice-controller.js
@@ -13,12 +13,15 @@ module.exports = class NoticeController extends EventEmitter {
this.firstVersion = opts.firstVersion
this.version = opts.version
const initState = extend({
- noticesList: this._filterNotices(hardCodedNotices),
+ noticesList: [],
}, opts.initState)
this.store = new ObservableStore(initState)
+ // setup memStore
this.memStore = new ObservableStore({})
this.store.subscribe(() => this._updateMemstore())
this._updateMemstore()
+ // pull in latest notices
+ this.updateNoticesList()
}
getNoticesList () {
@@ -84,8 +87,8 @@ module.exports = class NoticeController extends EventEmitter {
}
async _retrieveNoticeData () {
- // Placeholder for the API.
- return []
+ // Placeholder for remote notice API.
+ return hardCodedNotices
}
_updateMemstore () {