mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
0efdec5fd5
Summary: Rename ActivityBar => DeveloperBar Expose sync workers and make them observable New activity sidebar that replaces momentary notifications Updated specs Test Plan: Run new specs! Reviewers: evan Reviewed By: evan Maniphest Tasks: T1131 Differential Revision: https://phab.nylas.com/D1521
13 lines
346 B
CoffeeScript
13 lines
346 B
CoffeeScript
React = require 'react'
|
|
{ComponentRegistry, WorkspaceStore} = require 'nylas-exports'
|
|
DeveloperBar = require './developer-bar'
|
|
|
|
module.exports =
|
|
item: null
|
|
|
|
activate: (@state={}) ->
|
|
ComponentRegistry.register DeveloperBar,
|
|
location: WorkspaceStore.Sheet.Global.Footer
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister DeveloperBar
|