2015-09-07 23:53:43 +02:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-02-13 22:12:54 +01:00
|
|
|
*/
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-03-23 23:44:47 +01:00
|
|
|
Whisper.EndSessionView = Whisper.View.extend({
|
2015-02-13 22:12:54 +01:00
|
|
|
tagName: "div",
|
|
|
|
className: "end-session",
|
2015-03-23 23:44:47 +01:00
|
|
|
template: $('#message').html(),
|
|
|
|
render_attributes: function() {
|
|
|
|
return { text: 'Secure session ended' };
|
2015-02-13 22:12:54 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
})();
|