mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
45ef25fc02
Summary: Adds new redesigned preferences with horizontal tab bar and refactored code. Converts Preferences, Plugins, and a few components to ES6. Test Plan: Tested locally. Reviewers: evan, bengotow Reviewed By: bengotow Subscribers: juan Differential Revision: https://phab.nylas.com/D2818
16 lines
450 B
JavaScript
16 lines
450 B
JavaScript
import {PreferencesUIStore} from 'nylas-exports';
|
|
import PluginsView from './preferences-plugins';
|
|
|
|
export function activate() {
|
|
this.preferencesTab = new PreferencesUIStore.TabItem({
|
|
tabId: "Plugins",
|
|
displayName: "Plugins",
|
|
component: PluginsView,
|
|
});
|
|
|
|
PreferencesUIStore.registerPreferencesTab(this.preferencesTab);
|
|
}
|
|
|
|
export function deactivate() {
|
|
PreferencesUIStore.unregisterPreferencesTab(this.preferencesTab.sectionId)
|
|
}
|