Commit f73f61e6 authored by JC Brand's avatar JC Brand

Expose is_chatroom attribute on chat boxes returned by the API

parent 0426f479
...@@ -5896,14 +5896,15 @@ ...@@ -5896,14 +5896,15 @@
var wrappedChatBox = function (chatbox) { var wrappedChatBox = function (chatbox) {
var view = converse.chatboxviews.get(chatbox.get('jid')); var view = converse.chatboxviews.get(chatbox.get('jid'));
return { return {
'open': view.show.bind(view),
'close': view.close.bind(view), 'close': view.close.bind(view),
'endOTR': chatbox.endOTR.bind(chatbox), 'endOTR': chatbox.endOTR.bind(chatbox),
'focus': view.focus.bind(view), 'focus': view.focus.bind(view),
'get': chatbox.get.bind(chatbox), 'get': chatbox.get.bind(chatbox),
'initiateOTR': chatbox.initiateOTR.bind(chatbox), 'initiateOTR': chatbox.initiateOTR.bind(chatbox),
'is_chatroom': chatbox.is_chatroom,
'maximize': chatbox.maximize.bind(chatbox), 'maximize': chatbox.maximize.bind(chatbox),
'minimize': chatbox.minimize.bind(chatbox), 'minimize': chatbox.minimize.bind(chatbox),
'open': view.show.bind(view),
'set': chatbox.set.bind(chatbox) 'set': chatbox.set.bind(chatbox)
}; };
}; };
......
...@@ -31,6 +31,7 @@ Changelog ...@@ -31,6 +31,7 @@ Changelog
* CSS: Fonts Path: editabable $font-path via sass/variables.scss [thierrytiti] * CSS: Fonts Path: editabable $font-path via sass/variables.scss [thierrytiti]
* Add offline pretty status to enable translation [thierrytiti] * Add offline pretty status to enable translation [thierrytiti]
* With keepalive, don't send out a presence stanza on each page load [jcbrand] * With keepalive, don't send out a presence stanza on each page load [jcbrand]
* Chat boxes returned by the API now have an ``is_chatroom`` attribute [jcbrand]
0.9.3 (2015-05-01) 0.9.3 (2015-05-01)
------------------ ------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment