inkdrop-command-palette/lib/commandpalette.js

16 lines
380 B
JavaScript
Raw Normal View History

2022-08-16 21:11:16 +00:00
"use babel";
import CommandPalette from "./components/palette";
module.exports = {
activate() {
inkdrop.components.registerClass(CommandPalette);
inkdrop.layouts.addComponentToLayout("modal", "CommandPalette");
},
deactivate() {
inkdrop.layouts.removeComponentFromLayout("modal", "CommandPalette");
inkdrop.components.deleteClass(CommandPalette);
},
};