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