Cable-Desktop/js/views/end_session_view.js
lilia 77caa63321 Normalize views' template fetching pattern
Typically, a view can specify its templateName and then use the default
render method on Whisper.View, except in some special cases like message
view or message detail where other operations are performed during
render.

// FREEBIE
2015-12-09 18:58:52 -08:00

18 lines
375 B
JavaScript

/*
* vim: ts=4:sw=4:expandtab
*/
(function () {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.EndSessionView = Whisper.View.extend({
tagName: "div",
className: "end-session",
templateName: 'message',
render_attributes: function() {
return { text: 'Secure session ended' };
}
});
})();