mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-10 19:45:02 -05:00
30 lines
619 B
JavaScript
30 lines
619 B
JavaScript
/*global $*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var HumanView = require('human-view');
|
|
var templates = require('../templates');
|
|
|
|
|
|
module.exports = HumanView.extend({
|
|
template: templates.includes.message,
|
|
initialize: function (opts) {
|
|
this.render();
|
|
},
|
|
classBindings: {
|
|
mine: '.message',
|
|
receiptReceived: '',
|
|
acked: '',
|
|
delayed: '',
|
|
edited: ''
|
|
},
|
|
textBindings: {
|
|
body: '.body',
|
|
formattedTime: '.timestamp'
|
|
},
|
|
render: function () {
|
|
this.renderAndBind({message: this.model});
|
|
return this;
|
|
}
|
|
});
|