mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-08 01:04:39 +08:00
5470aaaf3d
Summary: Adds tests to the emoji picker. The emoji picker should also now be able to add emojis consecutively (without spaces). Test Plan: Tests included in diff. Reviewers: evan, bengotow Differential Revision: https://phab.nylas.com/D2551
11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
/** @babel */
|
|
import {ExtensionRegistry} from 'nylas-exports';
|
|
import EmojisComposerExtension from './emojis-composer-extension';
|
|
|
|
export function activate() {
|
|
ExtensionRegistry.Composer.register(EmojisComposerExtension);
|
|
}
|
|
|
|
export function deactivate() {
|
|
ExtensionRegistry.Composer.unregister(EmojisComposerExtension);
|
|
}
|