From e53f3d3bb902f35803ae8e4f041b90e2f2816e63 Mon Sep 17 00:00:00 2001 From: Arne Hassel Date: Mon, 16 Sep 2019 19:10:30 +0200 Subject: [PATCH] Readding shortChatPane so that existing resources can still be shown This is dependent on the changes in https://github.com/solid/chat-pane/pull/18, so do not merge until package.json reflects this update. Partial fix for https://github.com/solid/chat-pane/issues/16 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 14422b60..e331f31d 100644 --- a/index.js +++ b/index.js @@ -65,7 +65,7 @@ register(require('./transaction/period.js')) const chatPanes = require('chat-pane') register(chatPanes.longChatPane) // Long pane must have prio in case short pane tries to do a long pane -// register(chatPanes.shortChatPane) // was './chat/chatPane.js' +register(chatPanes.shortChatPane) // was './chat/chatPane.js' // register(require('./publication/publicationPane.js')) register(require('meeting-pane')) register(require('./tabbed/tabbedPane.js'))