2014-11-09 10:17:26 +00:00
|
|
|
/*global $, Whisper, Backbone, textsecure, extension*/
|
2014-10-02 01:29:37 +00:00
|
|
|
/* vim: ts=4:sw=4:expandtab:
|
2014-05-14 18:58:12 +00:00
|
|
|
*
|
2014-05-04 06:34:13 +00: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 10:17:26 +00:00
|
|
|
(function () {
|
2014-11-16 23:30:40 +00:00
|
|
|
'use strict';
|
2014-05-04 06:34:13 +00:00
|
|
|
|
2014-11-16 23:30:40 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-05-11 21:22:15 +00:00
|
|
|
|
|
|
|
extension.windows.getBackground(function(bg) {
|
|
|
|
if (bg.textsecure.storage.user.getNumber() === undefined) {
|
|
|
|
window.location = '/options.html';
|
|
|
|
} else {
|
|
|
|
new bg.Whisper.InboxView().$el.prependTo(bg.$('body',document));
|
|
|
|
}
|
|
|
|
});
|
2014-11-09 10:17:26 +00:00
|
|
|
}());
|