From a8f745f9fe74751b87f500af3857b66d4c80f45e Mon Sep 17 00:00:00 2001
From: brunobar79 <brunobar79@gmail.com>
Date: Mon, 2 Jul 2018 18:49:33 -0400
Subject: eslint --fix .

---
 development/mock-dev.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'development/mock-dev.js')

diff --git a/development/mock-dev.js b/development/mock-dev.js
index f332633d..8f8d2928 100644
--- a/development/mock-dev.js
+++ b/development/mock-dev.js
@@ -81,14 +81,14 @@ const controller = new MetamaskController({
   initState: firstTimeState,
 })
 global.metamaskController = controller
-global.platform = new ExtensionPlatform
+global.platform = new ExtensionPlatform()
 
 //
 // User Interface
 //
 
 actions._setBackgroundConnection(controller.getApi())
-actions.update = function(stateName) {
+actions.update = function (stateName) {
   selectedView = stateName
   updateQueryParams(stateName)
   const newState = states[selectedView]
@@ -98,7 +98,7 @@ actions.update = function(stateName) {
   }
 }
 
-function modifyBackgroundConnection(backgroundConnectionModifier) {
+function modifyBackgroundConnection (backgroundConnectionModifier) {
   const modifiedBackgroundConnection = Object.assign({}, controller.getApi(), backgroundConnectionModifier)
   actions._setBackgroundConnection(modifiedBackgroundConnection)
 }
@@ -112,7 +112,7 @@ var store = configureStore(firstState)
 // start app
 startApp()
 
-function startApp(){
+function startApp () {
   const body = document.body
   const container = document.createElement('div')
   container.id = 'test-container'
-- 
cgit