From 08dd2ac7b4a242c95be5cc40698a0b0013684ef7 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Fri, 2 Nov 2012 17:10:51 +0100 Subject: [PATCH] Initial implementation of chat. --- app/assets/javascripts/app/lib/app/interface_handle.js.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/assets/javascripts/app/lib/app/interface_handle.js.coffee b/app/assets/javascripts/app/lib/app/interface_handle.js.coffee index 341325939..e17bf031b 100644 --- a/app/assets/javascripts/app/lib/app/interface_handle.js.coffee +++ b/app/assets/javascripts/app/lib/app/interface_handle.js.coffee @@ -26,6 +26,9 @@ class App.Run extends App.Controller # start content new App.Content( el: @el.find('#content') ) + # start chat + new App.ChatWidget( el: @el.find('#chat') ) + # bind to fill selected text into App.ClipBoard.bind( @el )