2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-19 00:16:24 +00:00
|
|
|
*/
|
2014-07-22 18:55:26 +00:00
|
|
|
(function () {
|
2015-03-05 23:44:53 +00:00
|
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-22 18:55:26 +00:00
|
|
|
|
2015-03-05 23:44:53 +00:00
|
|
|
Whisper.ConversationListView = Whisper.ListView.extend({
|
|
|
|
tagName: 'div',
|
|
|
|
itemView: Whisper.ConversationListItemView,
|
2015-09-14 23:28:27 +00:00
|
|
|
onChangeActiveAt: function(conversation) {
|
2015-09-14 20:30:21 +00:00
|
|
|
var $el = this.$('.' + conversation.cid);
|
|
|
|
if ($el && $el.length > 0) {
|
2015-09-14 23:28:27 +00:00
|
|
|
if (conversation.get('active_at')) {
|
|
|
|
$el.prependTo(this.el);
|
|
|
|
} else {
|
2016-03-18 04:42:03 +00:00
|
|
|
var index = getInboxCollection().indexOf(conversation);
|
|
|
|
$el.insertBefore(this.$('.conversation-list-item')[index+1]);
|
2015-09-14 23:28:27 +00:00
|
|
|
}
|
2015-09-14 20:30:21 +00:00
|
|
|
}
|
2015-03-05 23:44:53 +00:00
|
|
|
}
|
|
|
|
});
|
2014-07-22 18:55:26 +00:00
|
|
|
})();
|