Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
move UI into a browserAction
Browse files Browse the repository at this point in the history
  • Loading branch information
diracdeltas committed Feb 17, 2018
1 parent 7c46a0b commit 00cdfdd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/browser/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ const api = {
// forget last active trail in window tab
// is detaching from
const oldTab = getTabValue(oldTabId)
const detachedFromWindowId = oldTab.get('windowId')
const detachedFromWindowId = oldTab ? oldTab.get('windowId') : undefined
if (detachedFromWindowId != null) {
activeTabHistory.clearTabFromWindow(detachedFromWindowId, oldTabId)
}
Expand Down
8 changes: 8 additions & 0 deletions app/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,14 @@ let generateEthwalletManifest = () => {
48: 'ethereum-48.png',
16: 'ethereum-16.png'
},
browser_action: {
default_icon: {
38: 'ethereum-48.png',
19: 'ethereum-16.png'
},
default_popup: 'index.html',
default_title: 'Ethereum Wallet'
},
incognito: 'split',
key: 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzrdMUtpj4PkN7uoeRC7pXsJyNC65iCWJObISzDQ/mCXerD3ATL54Y8TCkE1mS9O2tiZFY+og4g0GqLjT/M9GJ/Rjlj6cQqIaa9MnQ65H789V6rqPlTQyrd3udIylPJbr5aJ9RvuMcX8BKpT7SKcYvRSwZblKQ/OZ/a/5ylfM+QPyS5ZzooEq921I8eB4JF80aic/3cdU+Xmpyo/jdEe804/MemQ6kqlErXdNaFVU7fQ3lvCzWWcI+I3A1QbKSC2+G1HiToxllxU1gv+rAOsoHYwSkL2ZBTPkvnVBuV5vTS91GF3jGF9TMbw4m3TRNPJZkU32nfJy2JNaa1Ssnws+bQIDAQAB'
}
Expand Down

0 comments on commit 00cdfdd

Please sign in to comment.