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-02-13 21:12:54 +00:00
|
|
|
tagName: "div",
|
|
|
|
className: "end-session",
|
2015-03-23 22:44:47 +00:00
|
|
|
template: $('#message').html(),
|
|
|
|
render_attributes: function() {
|
|
|
|
return { text: 'Secure session ended' };
|
2015-02-13 21:12:54 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
})();
|