Remove unneeded param defaults from activate methods

This commit is contained in:
Corey Johnson
2013-02-13 10:43:13 -08:00
parent 7ade089d04
commit fc29a0d347
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ module.exports =
commandLoggerView: null
originalTrigger: null
activate: (state={})->
activate: (state) ->
@eventLog = state.eventLog ? {}
rootView.command 'command-logger:clear-data', => @eventLog = {}
rootView.command 'command-logger:toggle', => @createView().toggle(@eventLog)