mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
13 lines
380 B
CoffeeScript
13 lines
380 B
CoffeeScript
{WorkspaceStore, ComponentRegistry} = require 'nylas-exports'
|
|
FeedbackButton = require './feedback-button'
|
|
protocol = require('remote').require('protocol')
|
|
|
|
module.exports =
|
|
activate: (@state) ->
|
|
ComponentRegistry.register FeedbackButton,
|
|
location: WorkspaceStore.Sheet.Global.Footer
|
|
|
|
serialize: ->
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister(FeedbackButton)
|