aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/message-manager.js
Commit message (Collapse)AuthorAgeFilesLines
* Enable indent linting via ESLint (#6936)Whymarrh Whitby2019-08-011-1/+1
| | | | | | * Enable indent linting via ESLint * yarn run lint:fix
* Check for unused function arguments (#6583)Whymarrh Whitby2019-05-091-1/+1
| | | | | | | | | | * eslint: Check for unused function arguments * eslint: Ignore unused '_' in argument list Also allow any number of '_' e.g., '__' or '___' which is to be used sparingly * Remove and rename unused arguments
* Refactor buffer constructor (#5468)Noel Yoo2018-10-091-1/+1
|
* provider - update wallet hooks for new wallet middlewarekumavis2018-05-251-1/+30
|
* Remove accidentally added code in message-manager.Dan2018-04-241-8/+0
|
* Fix nits.Dan2018-04-241-10/+10
|
* Minor fixes in a number of docs.Dan2018-04-211-4/+4
|
* Even more documentation for various controllers and libs.Dan2018-04-191-4/+141
|
* Fix linting warningsThomas Huang2017-04-271-2/+2
|
* Add alternate UI for pending personal_sign messagesDan Finlay2017-02-241-1/+2
|
* id mgmt - update to latest eth_sign speckumavis2017-02-041-8/+27
|
* messageManager - move view state to obs-storekumavis2017-02-031-32/+20
|
* emit a update badgeFrankie2017-02-021-1/+1
|
* put updateBadge back inFrankie2017-02-021-0/+1
|
* swap out set state for updateStateFrankie2017-02-021-4/+1
|
* code clan up and testsFrankie2017-02-021-22/+20
|
* Clean up message manger includes:Frankie2017-01-291-10/+67
| | | | | | | | | Provider egine bump Remove presence of message manger in keyring controller Change the status wording fom conf to approved make Message manager a class fix messages not being apart of the badge re write message manger to better reflect controller pattern
* Rewrite message controller to fit controller patternFrankie2017-01-281-48/+45
|
* Auto lintedDan Finlay2016-06-221-10/+10
|
* Add UI for Signing MessagesDan Finlay2016-05-041-0/+61
Calls to `eth.sign` are now transiently persisted in memory, and displayed in a chronological stack with pending transactions (which are still persisted to disk). This allows the user a method to sign/cancel transactions even if they miss the Chrome notification. Improved a lot of the view routing, to avoid cases where routes would show an empty account view, or transition to the accounts list when it shouldn't. Broke the transaction approval view into a couple components so messages and transactions could have their own templates.