mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge branch 'master' into livereload
This commit is contained in:
commit
068bd7d40a
@ -2,9 +2,12 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
## 2.10.1 2016-09-02
|
||||||
|
|
||||||
- Fix bug where provider menu did not allow switching to custom network from a custom network.
|
- Fix bug where provider menu did not allow switching to custom network from a custom network.
|
||||||
- Sending a transaction from within MetaMask no longer triggers a popup.
|
- Sending a transaction from within MetaMask no longer triggers a popup.
|
||||||
- The ability to build without livereload features (such as for production) can be enabled with the gulp --disableLiveReload flag.
|
- The ability to build without livereload features (such as for production) can be enabled with the gulp --disableLiveReload flag.
|
||||||
|
- Fix Ethereum JSON RPC Filters bug.
|
||||||
|
|
||||||
## 2.10.0 2016-08-29
|
## 2.10.0 2016-08-29
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "MetaMask",
|
"name": "MetaMask",
|
||||||
"short_name": "Metamask",
|
"short_name": "Metamask",
|
||||||
"version": "2.10.0",
|
"version": "2.10.1",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "https://metamask.io",
|
"author": "https://metamask.io",
|
||||||
"description": "Ethereum Browser Extension",
|
"description": "Ethereum Browser Extension",
|
||||||
|
@ -9,20 +9,26 @@ module.exports = notifications
|
|||||||
window.METAMASK_NOTIFIER = notifications
|
window.METAMASK_NOTIFIER = notifications
|
||||||
|
|
||||||
function show () {
|
function show () {
|
||||||
getWindows((windows) => {
|
getPopup((err, popup) => {
|
||||||
|
if (err) throw err
|
||||||
|
|
||||||
|
if (popup) {
|
||||||
|
|
||||||
|
// bring focus to existing popup
|
||||||
|
extension.windows.update(popup.id, { focused: true })
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// create new popup
|
||||||
|
extension.windows.create({
|
||||||
|
url: 'notification.html',
|
||||||
|
type: 'popup',
|
||||||
|
focused: true,
|
||||||
|
width: 360,
|
||||||
|
height: 500,
|
||||||
|
})
|
||||||
|
|
||||||
if (windows.length > 0) {
|
|
||||||
const win = windows[0]
|
|
||||||
return extension.windows.update(win.id, { focused: true })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extension.windows.create({
|
|
||||||
url: 'notification.html',
|
|
||||||
type: 'popup',
|
|
||||||
focused: true,
|
|
||||||
width: 360,
|
|
||||||
height: 500,
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,19 +44,19 @@ function getWindows(cb) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getPopup(cb) {
|
function getPopup(cb) {
|
||||||
getWindows((windows) => {
|
getWindows((err, windows) => {
|
||||||
cb(getPopupIn(windows))
|
if (err) throw err
|
||||||
|
cb(null, getPopupIn(windows))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function getPopupIn(windows) {
|
function getPopupIn(windows) {
|
||||||
return windows ? windows.find((win) => {
|
return windows ? windows.find((win) => win.type === 'popup') : null
|
||||||
return win.type === 'popup'
|
|
||||||
}) : null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function closePopup() {
|
function closePopup() {
|
||||||
getPopup((popup) => {
|
getPopup((err, popup) => {
|
||||||
|
if (err) throw err
|
||||||
if (!popup) return
|
if (!popup) return
|
||||||
extension.windows.remove(popup.id, console.error)
|
extension.windows.remove(popup.id, console.error)
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user