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 || {};
|
2014-08-25 04:03:20 +00:00
|
|
|
|
2014-11-09 10:17:26 +00:00
|
|
|
if (textsecure.storage.getUnencrypted("number_id") === undefined) {
|
|
|
|
window.location = '/options.html';
|
|
|
|
} else {
|
2015-01-25 20:48:47 +00:00
|
|
|
new Whisper.InboxView({el: $('body')});
|
2014-11-09 10:17:26 +00:00
|
|
|
textsecure.storage.putUnencrypted("unreadCount", 0);
|
|
|
|
extension.navigator.setBadgeText("");
|
2014-10-02 01:29:37 +00:00
|
|
|
}
|
2014-11-09 10:17:26 +00:00
|
|
|
}());
|