From 440e0797a7412b16df3c5123d2e7b656a5a9cb95 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 6 Sep 2016 20:01:41 -0700 Subject: Reverting memory leak fix This wasn't a good enough fix, and had other repercussions. Looking for a way to properly detect EOS, and tear down the correct stream accordingly. --- app/scripts/background.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/scripts/background.js b/app/scripts/background.js index 18aaed7bf..21a5eea65 100644 --- a/app/scripts/background.js +++ b/app/scripts/background.js @@ -86,7 +86,6 @@ function setupControllerConnection (stream) { stream.pipe(dnode).pipe(stream) dnode.on('remote', (remote) => { // push updates to popup - controller.ethStore.removeListener('update', controller.sendUpdate.bind(controller)) controller.ethStore.on('update', controller.sendUpdate.bind(controller)) controller.listeners.push(remote) idStore.on('update', controller.sendUpdate.bind(controller)) -- cgit From d6619a25e90f206eef6dad46b09406b529f84b80 Mon Sep 17 00:00:00 2001 From: John Weldon Date: Wed, 7 Sep 2016 14:44:56 -0700 Subject: Fix typo --- ui/app/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/info.js b/ui/app/info.js index 4e540bd03..5c06409bd 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -67,7 +67,7 @@ InfoScreen.prototype.render = function () { `For more information on MetaMask you can visit our web site. If you want to contact us with questions or just - say 'Hi', you can find us on theise platforms:`), + say 'Hi', you can find us on these platforms:`), h('div', { style: { -- cgit