session-desktop/js/index.js

30 lines
880 B
JavaScript
Raw Normal View History

/*global $, Whisper, Backbone, textsecure, extension*/
/*
* vim: ts=4:sw=4:expandtab
*/
(function () {
'use strict';
var view;
2015-05-11 23:22:15 +02:00
function render() {
extension.windows.getBackground(function(bg) {
extension.windows.getCurrent(function(appWindow) {
if (view) { view.remove(); }
var $body = bg.$('body',document).empty();
view = new bg.Whisper.InboxView({appWindow: appWindow});
view.$el.prependTo($body);
window.openConversation = function(conversation) {
if (conversation) {
2015-09-21 19:21:33 +02:00
view.openConversation(null, conversation);
}
};
openConversation(bg.getOpenConversation());
});
});
}
window.addEventListener('onreload', render);
render();
}());