Make sure chat-info msgs are not auto-removed

This commit is contained in:
JC Brand 2013-05-31 09:58:12 +02:00
parent 18fc903563
commit c845d11f26
2 changed files with 20 additions and 20 deletions

View File

@ -194,11 +194,11 @@ ul.participant-list li.moderator {
display: inline-block;
}
.chat-event, .chat-date, .chat-help {
.chat-event, .chat-date, .chat-info {
color: #808080;
}
li.chat-help {
li.chat-info {
padding-left: 10px;
}

View File

@ -368,7 +368,7 @@
var $chat_content = this.$el.find('.chat-content'), i,
msgs_length = msgs.length;
for (i=0; i<msgs_length; i++) {
$chat_content.append($('<div class="chat-help">'+msgs[i]+'</div>'));
$chat_content.append($('<div class="chat-info">'+msgs[i]+'</div>'));
}
this.scrollDown();
},
@ -645,9 +645,9 @@
$.getJSON(portal_url + "/search-users?q=" + $(ev.target).find('input.username').val(), function (data) {
var $ul= $('.search-xmpp ul');
$ul.find('li.found-user').remove();
$ul.find('li.chat-help').remove();
$ul.find('li.chat-info').remove();
if (!data.length) {
$ul.append('<li class="chat-help">No users found</li>');
$ul.append('<li class="chat-info">No users found</li>');
}
$(data).each(function (idx, obj) {
@ -1038,7 +1038,7 @@
'click a.configure-chatroom-button': 'configureChatRoom',
'keypress textarea.chat-textarea': 'keyPressed'
},
info_template: _.template('<div class="chat-event">{{message}}</div>'),
info_template: _.template('<div class="chat-info">{{message}}</div>'),
sendChatRoomMessage: function (body) {
var match = body.replace(/^\s*/, "").match(/^\/(.*?)(?: (.*))?$/) || [false],