2015-09-07 14:53:43 -07:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-02-13 13:12:54 -08:00
|
|
|
*/
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-03-23 15:44:47 -07:00
|
|
|
Whisper.EndSessionView = Whisper.View.extend({
|
2015-12-24 22:52:50 -08:00
|
|
|
tagName: 'div',
|
|
|
|
className: 'end-session',
|
2015-12-08 15:01:29 -08:00
|
|
|
templateName: 'message',
|
2015-03-23 15:44:47 -07:00
|
|
|
render_attributes: function() {
|
2015-12-24 22:52:50 -08:00
|
|
|
return { text: i18n('sessionEnded') };
|
2015-02-13 13:12:54 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
})();
|