mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 21:57:55 +08:00
e53b481a25
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);
|
|
}
|