From 53bfd64a2ea6566cb2f75ed455eb5ae3685ad9f3 Mon Sep 17 00:00:00 2001 From: Matthew Beale Date: Tue, 18 Aug 2015 17:44:33 -0400 Subject: [PATCH] Export BoldCommand --- src/js/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/index.js b/src/js/index.js index bfb49581e..5fd65d3e4 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -1,9 +1,11 @@ import Editor from './editor/editor'; +import BoldCommand from './commands/bold'; import ImageCard from './cards/image'; const ContentKit = { Editor, - ImageCard + ImageCard, + BoldCommand }; export function registerGlobal(global) {