Return the angular promise on sendMessage

with-route-provider
David Cormier 12 years ago
parent d4cffcf38f
commit 706b5838a1
  1. 7
      js/websockets.js

@ -396,8 +396,13 @@ weechat.factory('connection', ['$q', '$rootScope', '$log', '$store', 'handlers',
this.websocket.close(); this.websocket.close();
} }
/*
* Format and send a weechat message
*
* @returns the angular promise
*/
var sendMessage = function(message) { var sendMessage = function(message) {
send(weeChat.Protocol.formatInput({ return send(weeChat.Protocol.formatInput({
buffer: models.getActiveBuffer()['fullName'], buffer: models.getActiveBuffer()['fullName'],
data: message data: message
})); }));

Loading…
Cancel
Save