|
|
|
@ -2,12 +2,12 @@ define('persona/chats', ['components', 'forum/chats'], function(components, core
|
|
|
|
|
var Chats = {};
|
|
|
|
|
|
|
|
|
|
Chats.init = function() {
|
|
|
|
|
components.get('chat/recent').off('click').on('click', 'li', function(e) {
|
|
|
|
|
components.get('chat/recent').off('click').on('click', '[component="chat/recent/room"]', function(e) {
|
|
|
|
|
var env = utils.findBootstrapEnvironment();
|
|
|
|
|
if (env === 'xs' || env === 'sm') {
|
|
|
|
|
app.openChat($(this).attr('data-username'), $(this).attr('data-uid'));
|
|
|
|
|
app.openChat($(this).attr('data-roomid'));
|
|
|
|
|
} else {
|
|
|
|
|
coreChats.switchChat(parseInt($(this).attr('data-uid'), 10), $(this).attr('data-username'));
|
|
|
|
|
coreChats.switchChat($(this).attr('data-roomid'));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|