Cable-Desktop/js/index.js
2015-09-21 10:32:35 -07:00

26 lines
863 B
JavaScript

/*global $, Whisper, Backbone, textsecure, extension*/
/*
* vim: ts=4:sw=4:expandtab
*/
(function () {
'use strict';
window.Whisper = window.Whisper || {};
extension.windows.getBackground(function(bg) {
if (bg.textsecure.storage.user.getNumber() === undefined) {
window.location = '/options.html';
} else {
extension.windows.getCurrent(function(appWindow) {
var view = new bg.Whisper.InboxView({appWindow: appWindow});
view.$el.prependTo(bg.$('body',document));
window.openConversation = function(conversation) {
if (conversation) {
view.openConversation(null, conversation);
}
};
openConversation(bg.getOpenConversation());
});
}
});
}());