From dd77529cba3cf116037c59b85b51513bf11d82ce Mon Sep 17 00:00:00 2001 From: Tor Hveem Date: Tue, 15 Oct 2013 16:57:40 +0200 Subject: [PATCH] remove old bufinfo handler --- js/websockets.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/js/websockets.js b/js/websockets.js index a39b86d..6dc4986 100644 --- a/js/websockets.js +++ b/js/websockets.js @@ -241,18 +241,6 @@ weechat.factory('handlers', ['$rootScope', 'colors', 'models', 'plugins', functi old.shortName = obj['short_name']; } - - /* - * Handle answers to (bufinfo) messages - * - * (bufinfo) messages are specified by this client. It is the first - * message that is sent to the relay after connection. - */ - var handleBufferInfo = function(message) { - // buffer info from message - } - - /* * Handle answers to (lineinfo) messages * @@ -274,7 +262,6 @@ weechat.factory('handlers', ['$rootScope', 'colors', 'models', 'plugins', functi } var eventHandlers = { - bufinfo: handleBufferInfo, lineinfo: handleLineInfo, _buffer_closing: handleBufferClosing, _buffer_line_added: handleBufferLineAdded,