mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix broken action reference
This commit is contained in:
parent
9a8ede2210
commit
179d176dc1
@ -47,6 +47,7 @@ var actions = {
|
|||||||
unlockInProgress: unlockInProgress,
|
unlockInProgress: unlockInProgress,
|
||||||
// error handling
|
// error handling
|
||||||
displayWarning: displayWarning,
|
displayWarning: displayWarning,
|
||||||
|
showWarning: showWarning, // alias
|
||||||
DISPLAY_WARNING: 'DISPLAY_WARNING',
|
DISPLAY_WARNING: 'DISPLAY_WARNING',
|
||||||
HIDE_WARNING: 'HIDE_WARNING',
|
HIDE_WARNING: 'HIDE_WARNING',
|
||||||
hideWarning: hideWarning,
|
hideWarning: hideWarning,
|
||||||
@ -507,6 +508,10 @@ function hideLoadingIndication () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function showWarning (text) {
|
||||||
|
return this.displayWarning(text)
|
||||||
|
}
|
||||||
|
|
||||||
function displayWarning (text) {
|
function displayWarning (text) {
|
||||||
return {
|
return {
|
||||||
type: actions.DISPLAY_WARNING,
|
type: actions.DISPLAY_WARNING,
|
||||||
|
Loading…
Reference in New Issue
Block a user