2014-11-09 05:17:26 -05:00
|
|
|
/*global $, Whisper, Backbone, textsecure, extension*/
|
2014-10-01 18:29:37 -07:00
|
|
|
/* vim: ts=4:sw=4:expandtab:
|
2014-05-14 14:58:12 -04:00
|
|
|
*
|
2014-05-04 02:34:13 -04:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-11-09 05:17:26 -05:00
|
|
|
(function () {
|
2014-11-16 15:30:40 -08:00
|
|
|
'use strict';
|
2014-05-04 02:34:13 -04:00
|
|
|
|
2014-11-16 15:30:40 -08:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-05-11 14:22:15 -07:00
|
|
|
|
|
|
|
extension.windows.getBackground(function(bg) {
|
|
|
|
if (bg.textsecure.storage.user.getNumber() === undefined) {
|
|
|
|
window.location = '/options.html';
|
|
|
|
} else {
|
2015-05-21 13:05:52 -07:00
|
|
|
extension.windows.getCurrent(function(appWindow) {
|
|
|
|
new bg.Whisper.InboxView({appWindow: appWindow}).$el.prependTo(bg.$('body',document));
|
|
|
|
});
|
2015-05-11 14:22:15 -07:00
|
|
|
}
|
|
|
|
});
|
2014-11-09 05:17:26 -05:00
|
|
|
}());
|