aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/popup-core.js
diff options
context:
space:
mode:
authorbitpshr <mail@bitpshr.net>2018-04-19 09:30:13 +0800
committerbitpshr <mail@bitpshr.net>2018-04-19 09:30:13 +0800
commit1ef6528921263fb9dbae35476a1d9827e1d87508 (patch)
treeb0a4da9a783e902ec4e984f94d892542868756bb /app/scripts/popup-core.js
parent6dbdc87713a652dec4c90fa792dda08d613d4198 (diff)
downloadtangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar.gz
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar.bz2
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar.lz
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar.xz
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.tar.zst
tangerine-wallet-browser-1ef6528921263fb9dbae35476a1d9827e1d87508.zip
Add JSDoc to various background scripts
Diffstat (limited to 'app/scripts/popup-core.js')
-rw-r--r--app/scripts/popup-core.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/scripts/popup-core.js b/app/scripts/popup-core.js
index 5a5fa95f9..69fbcf49c 100644
--- a/app/scripts/popup-core.js
+++ b/app/scripts/popup-core.js
@@ -12,7 +12,7 @@ module.exports = initializePopup
/**
* Asynchronously initializes the MetaMask popup UI
*
- * @param {{ container: Element, connectionStream: any }} config Popup configuration object
+ * @param {{ container: Element, connectionStream: * }} config Popup configuration object
* @param {Function} cb Called when initialization is comlete
*/
function initializePopup ({ container, connectionStream }, cb) {
@@ -26,7 +26,7 @@ function initializePopup ({ container, connectionStream }, cb) {
/**
* Establishes streamed connections to background scripts and a Web3 provider
*
- * @param {any} connectionStream PortStream instance establishing a background connection
+ * @param {*} connectionStream PortStream instance establishing a background connection
* @param {Function} cb Called when controller connection is established
*/
function connectToAccountManager (connectionStream, cb) {
@@ -41,7 +41,7 @@ function connectToAccountManager (connectionStream, cb) {
/**
* Establishes a streamed connection to a Web3 provider
*
- * @param {any} connectionStream PortStream instance establishing a background connection
+ * @param {*} connectionStream PortStream instance establishing a background connection
*/
function setupWeb3Connection (connectionStream) {
var providerStream = new StreamProvider()
@@ -56,7 +56,7 @@ function setupWeb3Connection (connectionStream) {
/**
* Establishes a streamed connection to the background account manager
*
- * @param {any} connectionStream PortStream instance establishing a background connection
+ * @param {*} connectionStream PortStream instance establishing a background connection
* @param {Function} cb Called when the remote account manager connection is established
*/
function setupControllerConnection (connectionStream, cb) {